From 4dd02f85f7d54f58ae6d3cf21648431bc84222e2 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 8 Sep 2020 09:38:05 -0400 Subject: [PATCH] Added new dialog menus/controllers. Made general argument controller. --- Sledgehammer [Bungeecord]/.idea/.gitignore | 3 + Sledgehammer [Bungeecord]/.idea/compiler.xml | 18 + Sledgehammer [Bungeecord]/.idea/discord.xml | 6 + .../.idea/jarRepositories.xml | 30 + ...Maven__com_google_code_gson_gson_2_8_0.xml | 13 + .../Maven__com_google_guava_guava_21_0.xml | 13 + ...oglecode_json_simple_json_simple_1_1_1.xml | 13 + .../Maven__commons_io_commons_io_2_7.xml | 13 + ...en__io_netty_netty_buffer_4_1_49_Final.xml | 13 + ...ven__io_netty_netty_codec_4_1_49_Final.xml | 13 + ...en__io_netty_netty_common_4_1_49_Final.xml | 13 + ...__io_netty_netty_resolver_4_1_49_Final.xml | 13 + ..._io_netty_netty_transport_4_1_49_Final.xml | 13 + ...nsport_native_unix_common_4_1_49_Final.xml | 13 + .../libraries/Maven__junit_junit_4_10.xml | 13 + ...en__net_md_5_brigadier_1_0_16_SNAPSHOT.xml | 13 + ...md_5_bungeecord_api_1_16_R0_2_SNAPSHOT.xml | 13 + ...d_5_bungeecord_chat_1_16_R0_2_SNAPSHOT.xml | 13 + ...5_bungeecord_config_1_16_R0_2_SNAPSHOT.xml | 13 + ..._5_bungeecord_event_1_16_R0_2_SNAPSHOT.xml | 13 + ...bungeecord_protocol_1_16_R0_2_SNAPSHOT.xml | 13 + .../Maven__net_sf_trove4j_core_3_1_0.xml | 13 + .../Maven__org_hamcrest_hamcrest_core_1_1.xml | 13 + .../Maven__org_slf4j_slf4j_api_1_7_25.xml | 13 + .../Maven__org_slf4j_slf4j_simple_1_7_25.xml | 13 + .../Maven__org_yaml_snakeyaml_1_26.xml | 13 + .../Maven__se_llbit_jo_nbt_1_3_0.xml | 13 + Sledgehammer [Bungeecord]/.idea/misc.xml | 16 + Sledgehammer [Bungeecord]/.idea/modules.xml | 8 + .../.idea/uiDesigner.xml | 124 + Sledgehammer [Bungeecord]/.idea/vcs.xml | 6 + Sledgehammer [Bungeecord]/Sledgehammer.iml | 46 + .../noahhusby/sledgehammer/Sledgehammer.java | 7 +- .../sledgehammer/commands/CsTpllCommand.java | 7 - .../commands/SledgehammerAdminCommand.java | 43 +- .../sledgehammer/commands/TpllCommand.java | 4 - .../commands/data/SetupAdminTracker.java | 2 +- .../commands/data/SetupField.java | 2 +- .../fragments/CommandFragmentManager.java | 68 + .../commands/fragments/FragmentManager.java | 76 + .../ICommandFragment.java} | 6 +- .../admin/PermissionListAdminCommand.java | 11 +- .../fragments/admin/ServerAdminCommand.java | 56 + .../admin/SetupAdminCommand.java | 14 +- .../server/ServerAddLocationFragment.java | 39 + .../server/ServerListLocationFragment.java | 54 + .../sledgehammer/config/ConfigHandler.java | 4 +- .../sledgehammer/data/dialogs/CityScene.java | 24 + .../data/dialogs/CountryScene.java | 28 + .../data/dialogs/CountyScene.java | 25 + .../data/dialogs/DialogScene.java | 73 + .../data/dialogs/IDialogScene.java | 12 + .../data/dialogs/LocationSelectionScene.java | 32 + .../sledgehammer/data/dialogs/StateScene.java | 22 + .../dialogs/components/DialogComponent.java | 16 + .../dialogs/components/IDialogComponent.java | 19 + .../components/location/CityComponent.java | 31 + .../components/location/CountryComponent.java | 31 + .../components/location/CountyComponent.java | 31 + .../location/LocationSelectionComponent.java | 36 + .../components/location/StateComponent.java | 32 + .../handlers/CommunicationHandler.java | 70 - .../sledgehammer/handlers/DialogHandler.java | 82 + .../sledgehammer/handlers/TaskHandler.java | 5 +- .../sledgehammer/tasks/CommandTask.java | 1 + .../sledgehammer/tasks/LocationTask.java | 1 + .../sledgehammer/tasks/SetWarpTask.java | 1 + .../noahhusby/sledgehammer/tasks/Task.java | 1 + .../sledgehammer/tasks/TeleportTask.java | 1 + .../tasks/{ => data}/IResponse.java | 2 +- .../sledgehammer/tasks/{ => data}/ITask.java | 4 +- .../sledgehammer/util/ChatHelper.java | 1 - .../assets/sledgehammer/data/conformal.txt | 33153 ++++++++++++++++ .../target/classes/config.yml | 17 + .../target/classes/plugin.yml | 4 + .../target/maven-archiver/pom.properties | 5 + .../compile/default-compile/createdFiles.lst | 73 + .../compile/default-compile/inputFiles.lst | 65 + .../.gradle/4.10/fileChanges/last-build.bin | Bin 0 -> 1 bytes .../.gradle/4.10/fileHashes/fileHashes.bin | Bin 0 -> 18647 bytes .../.gradle/4.10/fileHashes/fileHashes.lock | Bin 0 -> 17 bytes .../.gradle/4.10/gc.properties | 0 .../.gradle/vcs-1/gc.properties | 0 Sledgehammer [Forge]/.idea/.gitignore | 3 + Sledgehammer [Forge]/.idea/compiler.xml | 6 + Sledgehammer [Forge]/.idea/discord.xml | 6 + Sledgehammer [Forge]/.idea/gradle.xml | 16 + .../.idea/jarRepositories.xml | 55 + Sledgehammer [Forge]/.idea/misc.xml | 12 + .../modules/Sledgehammer_[Forge].api.iml | 16 + .../modules/Sledgehammer_[Forge].main.iml | 16 + .../modules/Sledgehammer_[Forge].test.iml | 16 + Sledgehammer [Forge]/.idea/vcs.xml | 6 + 93 files changed, 34862 insertions(+), 137 deletions(-) create mode 100644 Sledgehammer [Bungeecord]/.idea/.gitignore create mode 100644 Sledgehammer [Bungeecord]/.idea/compiler.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/discord.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/jarRepositories.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_code_gson_gson_2_8_0.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_guava_guava_21_0.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_googlecode_json_simple_json_simple_1_1_1.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__commons_io_commons_io_2_7.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_buffer_4_1_49_Final.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_codec_4_1_49_Final.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_common_4_1_49_Final.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_resolver_4_1_49_Final.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_4_1_49_Final.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_native_unix_common_4_1_49_Final.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__junit_junit_4_10.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_brigadier_1_0_16_SNAPSHOT.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_api_1_16_R0_2_SNAPSHOT.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_chat_1_16_R0_2_SNAPSHOT.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_config_1_16_R0_2_SNAPSHOT.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_event_1_16_R0_2_SNAPSHOT.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_protocol_1_16_R0_2_SNAPSHOT.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_sf_trove4j_core_3_1_0.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_1.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_simple_1_7_25.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_yaml_snakeyaml_1_26.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/libraries/Maven__se_llbit_jo_nbt_1_3_0.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/misc.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/modules.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/uiDesigner.xml create mode 100644 Sledgehammer [Bungeecord]/.idea/vcs.xml create mode 100644 Sledgehammer [Bungeecord]/Sledgehammer.iml create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/CommandFragmentManager.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/FragmentManager.java rename Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/{data/IAdminCommand.java => fragments/ICommandFragment.java} (55%) rename Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/{ => fragments}/admin/PermissionListAdminCommand.java (83%) create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/ServerAdminCommand.java rename Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/{ => fragments}/admin/SetupAdminCommand.java (98%) create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerAddLocationFragment.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerListLocationFragment.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CityScene.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountryScene.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountyScene.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/DialogScene.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/IDialogScene.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/LocationSelectionScene.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/StateScene.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/DialogComponent.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/IDialogComponent.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CityComponent.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountryComponent.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountyComponent.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/LocationSelectionComponent.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/StateComponent.java delete mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/CommunicationHandler.java create mode 100644 Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/DialogHandler.java rename Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/{ => data}/IResponse.java (83%) rename Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/{ => data}/ITask.java (53%) create mode 100644 Sledgehammer [Bungeecord]/target/classes/assets/sledgehammer/data/conformal.txt create mode 100644 Sledgehammer [Bungeecord]/target/classes/config.yml create mode 100644 Sledgehammer [Bungeecord]/target/classes/plugin.yml create mode 100644 Sledgehammer [Bungeecord]/target/maven-archiver/pom.properties create mode 100644 Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 Sledgehammer [Forge]/.gradle/4.10/fileChanges/last-build.bin create mode 100644 Sledgehammer [Forge]/.gradle/4.10/fileHashes/fileHashes.bin create mode 100644 Sledgehammer [Forge]/.gradle/4.10/fileHashes/fileHashes.lock create mode 100644 Sledgehammer [Forge]/.gradle/4.10/gc.properties create mode 100644 Sledgehammer [Forge]/.gradle/vcs-1/gc.properties create mode 100644 Sledgehammer [Forge]/.idea/.gitignore create mode 100644 Sledgehammer [Forge]/.idea/compiler.xml create mode 100644 Sledgehammer [Forge]/.idea/discord.xml create mode 100644 Sledgehammer [Forge]/.idea/gradle.xml create mode 100644 Sledgehammer [Forge]/.idea/jarRepositories.xml create mode 100644 Sledgehammer [Forge]/.idea/misc.xml create mode 100644 Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].api.iml create mode 100644 Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].main.iml create mode 100644 Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].test.iml create mode 100644 Sledgehammer [Forge]/.idea/vcs.xml diff --git a/Sledgehammer [Bungeecord]/.idea/.gitignore b/Sledgehammer [Bungeecord]/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/Sledgehammer [Bungeecord]/.idea/compiler.xml b/Sledgehammer [Bungeecord]/.idea/compiler.xml new file mode 100644 index 00000000..a54598df --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/compiler.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/discord.xml b/Sledgehammer [Bungeecord]/.idea/discord.xml new file mode 100644 index 00000000..cd711a0e --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/discord.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/jarRepositories.xml b/Sledgehammer [Bungeecord]/.idea/jarRepositories.xml new file mode 100644 index 00000000..e04814a1 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/jarRepositories.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_code_gson_gson_2_8_0.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_code_gson_gson_2_8_0.xml new file mode 100644 index 00000000..6e5d5b7a --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_code_gson_gson_2_8_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_guava_guava_21_0.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_guava_guava_21_0.xml new file mode 100644 index 00000000..a9234562 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_google_guava_guava_21_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_googlecode_json_simple_json_simple_1_1_1.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_googlecode_json_simple_json_simple_1_1_1.xml new file mode 100644 index 00000000..f3f3738f --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__com_googlecode_json_simple_json_simple_1_1_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__commons_io_commons_io_2_7.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__commons_io_commons_io_2_7.xml new file mode 100644 index 00000000..ded72c9c --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__commons_io_commons_io_2_7.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_buffer_4_1_49_Final.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_buffer_4_1_49_Final.xml new file mode 100644 index 00000000..9247b162 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_buffer_4_1_49_Final.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_codec_4_1_49_Final.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_codec_4_1_49_Final.xml new file mode 100644 index 00000000..a3b1c84c --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_codec_4_1_49_Final.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_common_4_1_49_Final.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_common_4_1_49_Final.xml new file mode 100644 index 00000000..0219231f --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_common_4_1_49_Final.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_resolver_4_1_49_Final.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_resolver_4_1_49_Final.xml new file mode 100644 index 00000000..a080e6b4 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_resolver_4_1_49_Final.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_4_1_49_Final.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_4_1_49_Final.xml new file mode 100644 index 00000000..f0b77412 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_4_1_49_Final.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_native_unix_common_4_1_49_Final.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_native_unix_common_4_1_49_Final.xml new file mode 100644 index 00000000..f44d0e17 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__io_netty_netty_transport_native_unix_common_4_1_49_Final.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__junit_junit_4_10.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__junit_junit_4_10.xml new file mode 100644 index 00000000..ed8bf5fe --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__junit_junit_4_10.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_brigadier_1_0_16_SNAPSHOT.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_brigadier_1_0_16_SNAPSHOT.xml new file mode 100644 index 00000000..844cdda3 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_brigadier_1_0_16_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_api_1_16_R0_2_SNAPSHOT.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_api_1_16_R0_2_SNAPSHOT.xml new file mode 100644 index 00000000..cc9a4969 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_api_1_16_R0_2_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_chat_1_16_R0_2_SNAPSHOT.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_chat_1_16_R0_2_SNAPSHOT.xml new file mode 100644 index 00000000..0a8750fa --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_chat_1_16_R0_2_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_config_1_16_R0_2_SNAPSHOT.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_config_1_16_R0_2_SNAPSHOT.xml new file mode 100644 index 00000000..020e33d3 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_config_1_16_R0_2_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_event_1_16_R0_2_SNAPSHOT.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_event_1_16_R0_2_SNAPSHOT.xml new file mode 100644 index 00000000..f616defe --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_event_1_16_R0_2_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_protocol_1_16_R0_2_SNAPSHOT.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_protocol_1_16_R0_2_SNAPSHOT.xml new file mode 100644 index 00000000..f65b106c --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_md_5_bungeecord_protocol_1_16_R0_2_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_sf_trove4j_core_3_1_0.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_sf_trove4j_core_3_1_0.xml new file mode 100644 index 00000000..94601093 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__net_sf_trove4j_core_3_1_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_1.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_1.xml new file mode 100644 index 00000000..acdf4430 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml new file mode 100644 index 00000000..20e81636 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_25.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_simple_1_7_25.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_simple_1_7_25.xml new file mode 100644 index 00000000..8bc862ba --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_slf4j_slf4j_simple_1_7_25.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_yaml_snakeyaml_1_26.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_yaml_snakeyaml_1_26.xml new file mode 100644 index 00000000..e998675a --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__org_yaml_snakeyaml_1_26.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/libraries/Maven__se_llbit_jo_nbt_1_3_0.xml b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__se_llbit_jo_nbt_1_3_0.xml new file mode 100644 index 00000000..d3ebcf7b --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/libraries/Maven__se_llbit_jo_nbt_1_3_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/misc.xml b/Sledgehammer [Bungeecord]/.idea/misc.xml new file mode 100644 index 00000000..78fd9ea0 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/misc.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/modules.xml b/Sledgehammer [Bungeecord]/.idea/modules.xml new file mode 100644 index 00000000..9dfe214a --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/uiDesigner.xml b/Sledgehammer [Bungeecord]/.idea/uiDesigner.xml new file mode 100644 index 00000000..e96534fb --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/.idea/vcs.xml b/Sledgehammer [Bungeecord]/.idea/vcs.xml new file mode 100644 index 00000000..6c0b8635 --- /dev/null +++ b/Sledgehammer [Bungeecord]/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/Sledgehammer.iml b/Sledgehammer [Bungeecord]/Sledgehammer.iml new file mode 100644 index 00000000..b03c62bc --- /dev/null +++ b/Sledgehammer [Bungeecord]/Sledgehammer.iml @@ -0,0 +1,46 @@ + + + + + + + BUNGEECORD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/Sledgehammer.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/Sledgehammer.java index 3df4483c..cb267cef 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/Sledgehammer.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/Sledgehammer.java @@ -1,7 +1,7 @@ package com.noahhusby.sledgehammer; import com.noahhusby.sledgehammer.commands.*; -import com.noahhusby.sledgehammer.commands.admin.SetupAdminCommand; +import com.noahhusby.sledgehammer.commands.fragments.admin.SetupAdminCommand; import com.noahhusby.sledgehammer.config.ConfigHandler; import com.noahhusby.sledgehammer.datasets.OpenStreetMaps; import com.noahhusby.sledgehammer.handlers.PlayerLocationHandler; @@ -15,6 +15,7 @@ import net.md_5.bungee.config.Configuration; import net.md_5.bungee.event.EventHandler; +import java.util.List; import java.util.concurrent.TimeUnit; import java.util.logging.Logger; @@ -68,7 +69,7 @@ public void onPlayerLeave(PlayerDisconnectEvent e) { PlayerLocationHandler.getInstance().onPlayerQuit(e.getPlayer()); } - public static void setupAdminCommandListener(SetupAdminCommand s) { - ProxyServer.getInstance().getPluginManager().registerListener(sledgehammer, s); + public static void setupListener(Listener l) { + ProxyServer.getInstance().getPluginManager().registerListener(sledgehammer, l); } } diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/CsTpllCommand.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/CsTpllCommand.java index 5b0681bb..d642ce3d 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/CsTpllCommand.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/CsTpllCommand.java @@ -1,9 +1,6 @@ package com.noahhusby.sledgehammer.commands; -import com.noahhusby.sledgehammer.Sledgehammer; import com.noahhusby.sledgehammer.commands.data.Command; -import com.noahhusby.sledgehammer.datasets.OpenStreetMaps; -import com.noahhusby.sledgehammer.handlers.CommunicationHandler; import com.noahhusby.sledgehammer.handlers.TaskHandler; import com.noahhusby.sledgehammer.tasks.CommandTask; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; @@ -12,13 +9,9 @@ import com.noahhusby.sledgehammer.util.TextElement; import net.md_5.bungee.api.ChatColor; import net.md_5.bungee.api.CommandSender; -import net.md_5.bungee.api.ProxyServer; -import net.md_5.bungee.api.config.ServerInfo; import net.md_5.bungee.api.connection.ProxiedPlayer; import java.util.ArrayList; -import java.util.LinkedHashMap; -import java.util.Map; public class CsTpllCommand extends Command { diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/SledgehammerAdminCommand.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/SledgehammerAdminCommand.java index 3bb4c2a6..9a25b87d 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/SledgehammerAdminCommand.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/SledgehammerAdminCommand.java @@ -1,33 +1,28 @@ package com.noahhusby.sledgehammer.commands; -import com.noahhusby.sledgehammer.Sledgehammer; -import com.noahhusby.sledgehammer.commands.admin.PermissionListAdminCommand; -import com.noahhusby.sledgehammer.commands.admin.SetupAdminCommand; +import com.noahhusby.sledgehammer.commands.fragments.CommandFragmentManager; +import com.noahhusby.sledgehammer.commands.fragments.admin.PermissionListAdminCommand; +import com.noahhusby.sledgehammer.commands.fragments.admin.ServerAdminCommand; +import com.noahhusby.sledgehammer.commands.fragments.admin.SetupAdminCommand; import com.noahhusby.sledgehammer.commands.data.Command; -import com.noahhusby.sledgehammer.commands.data.IAdminCommand; import com.noahhusby.sledgehammer.util.ChatHelper; import com.noahhusby.sledgehammer.util.TextElement; -import com.sun.org.apache.regexp.internal.RE; import net.md_5.bungee.api.ChatColor; import net.md_5.bungee.api.CommandSender; -import net.md_5.bungee.api.ProxyServer; -import net.md_5.bungee.api.chat.TextComponent; import java.util.ArrayList; import java.util.List; -public class SledgehammerAdminCommand extends Command { +public class SledgehammerAdminCommand extends CommandFragmentManager { public SledgehammerAdminCommand() { super("sha", "sledgehammer.admin"); - registerAdminCommand(new PermissionListAdminCommand()); - registerAdminCommand(new SetupAdminCommand()); - } - - List adminCommandList = new ArrayList<>(); + setCommandBase("sha"); + setTitle("Sledgehammer Admin Commands:"); - private void registerAdminCommand(IAdminCommand command) { - this.adminCommandList.add(command); + registerCommandFragment(new PermissionListAdminCommand()); + registerCommandFragment(new SetupAdminCommand()); + registerCommandFragment(new ServerAdminCommand()); } @Override @@ -36,22 +31,6 @@ public void execute(CommandSender sender, String[] args) { sender.sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement("You don't have permission to run this command!", ChatColor.DARK_RED))); return; } - if(args.length == 0) { - sender.sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement("Sledgehammer Admin Commands:", ChatColor.GRAY))); - for(IAdminCommand a : adminCommandList) { - sender.sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement("/sha "+a.getName(), ChatColor.YELLOW), - new TextElement(" - ", ChatColor.GRAY), new TextElement(a.getPurpose(), ChatColor.RED))); - } - } else { - ArrayList dataList = new ArrayList<>(); - for(int x = 1; x < args.length; x++) dataList.add(args[x]); - - String[] data = dataList.toArray(new String[dataList.size()]); - for(IAdminCommand a : adminCommandList) { - if(a.getName().equals(args[0].toLowerCase())) { - a.execute(sender, data); - } - } - } + executeFragment(sender, args); } } diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/TpllCommand.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/TpllCommand.java index a59fad80..0e3d4ccf 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/TpllCommand.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/TpllCommand.java @@ -1,9 +1,7 @@ package com.noahhusby.sledgehammer.commands; -import com.noahhusby.sledgehammer.Sledgehammer; import com.noahhusby.sledgehammer.commands.data.Command; import com.noahhusby.sledgehammer.datasets.OpenStreetMaps; -import com.noahhusby.sledgehammer.handlers.CommunicationHandler; import com.noahhusby.sledgehammer.handlers.TaskHandler; import com.noahhusby.sledgehammer.tasks.LocationTask; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; @@ -16,8 +14,6 @@ import net.md_5.bungee.api.config.ServerInfo; import net.md_5.bungee.api.connection.ProxiedPlayer; -import java.util.*; - public class TpllCommand extends Command { public TpllCommand() { diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupAdminTracker.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupAdminTracker.java index dbf89da0..6178449e 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupAdminTracker.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupAdminTracker.java @@ -1,6 +1,6 @@ package com.noahhusby.sledgehammer.commands.data; -import com.noahhusby.sledgehammer.commands.admin.SetupAdminCommand; +import com.noahhusby.sledgehammer.commands.fragments.admin.SetupAdminCommand; import com.noahhusby.sledgehammer.config.ServerConfig; import com.noahhusby.sledgehammer.config.types.Server; import com.noahhusby.sledgehammer.datasets.Location; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupField.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupField.java index 8b07ab96..108f9e0a 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupField.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/SetupField.java @@ -1,6 +1,6 @@ package com.noahhusby.sledgehammer.commands.data; -import com.noahhusby.sledgehammer.commands.admin.SetupAdminCommand; +import com.noahhusby.sledgehammer.commands.fragments.admin.SetupAdminCommand; import net.md_5.bungee.api.chat.TextComponent; public class SetupField { diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/CommandFragmentManager.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/CommandFragmentManager.java new file mode 100644 index 00000000..856ac56a --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/CommandFragmentManager.java @@ -0,0 +1,68 @@ +package com.noahhusby.sledgehammer.commands.fragments; + +import com.noahhusby.sledgehammer.commands.data.Command; +import com.noahhusby.sledgehammer.util.ChatHelper; +import com.noahhusby.sledgehammer.util.TextElement; +import net.md_5.bungee.api.ChatColor; +import net.md_5.bungee.api.CommandSender; + +import java.util.ArrayList; +import java.util.List; + +public abstract class CommandFragmentManager extends Command { + + public CommandFragmentManager(String name, String node) { + super(name, node); + } + + public CommandFragmentManager(String name, String node, String[] alias) { + super(name, node, alias); + } + + private List commandFragments = new ArrayList<>(); + private String title = ""; + private String commandBase = ""; + + protected void registerCommandFragment(ICommandFragment c) { + commandFragments.add(c); + } + + protected void setTitle(String t) { + this.title = " "+t; + } + + protected void setCommandBase(String b) { + this.commandBase = "/"+b+" "; + } + + protected void executeFragment(CommandSender sender, String[] args) { + if (args.length != 0) { + ArrayList dataList = new ArrayList<>(); + for (int x = 1; x < args.length; x++) dataList.add(args[x]); + + String[] data = dataList.toArray(new String[dataList.size()]); + for (ICommandFragment f : commandFragments) { + if (f.getName().equals(args[0].toLowerCase())) { + f.execute(sender, data); + return; + } + } + } + displayCommands(sender, args); + } + + private void displayCommands(CommandSender sender, String[] args) { + sender.sendMessage(ChatHelper.getInstance().makeTitleTextComponent(new TextElement(title+":", ChatColor.GRAY))); + for(ICommandFragment f : commandFragments) { + String arguments; + if(f.getArguments() == null) { + arguments = ""; + } else { + arguments = " "+f.getArguments(); + } + sender.sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement(commandBase+f.getName() + +arguments, ChatColor.YELLOW), + new TextElement(" - ", ChatColor.GRAY), new TextElement(f.getPurpose(), ChatColor.RED))); + } + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/FragmentManager.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/FragmentManager.java new file mode 100644 index 00000000..85d9b445 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/FragmentManager.java @@ -0,0 +1,76 @@ +package com.noahhusby.sledgehammer.commands.fragments; + +import com.noahhusby.sledgehammer.util.ChatHelper; +import com.noahhusby.sledgehammer.util.TextElement; +import net.md_5.bungee.api.ChatColor; +import net.md_5.bungee.api.CommandSender; + +import java.util.ArrayList; +import java.util.List; + +public class FragmentManager { + + List commandFragments = new ArrayList<>(); + private String title = ""; + private String commandBase = ""; + + protected void registerCommandFragment(ICommandFragment c) { + commandFragments.add(c); + } + + protected void setTitle(String t) { + this.title = " "+t; + } + + protected void setCommandBase(String b) { + this.commandBase = "/"+b+" "; + } + + protected void executeFragment(CommandSender sender, String[] args) { + executeFragment(sender, args, 0); + } + + protected void executeFragment(CommandSender sender, String[] args, int index) { + if(args.length <= index) { + displayCommands(sender); + } else { + if(index == 0) { + ArrayList dataList = new ArrayList<>(); + for(int x = 1; x < args.length; x++) dataList.add(args[x]); + + String[] data = dataList.toArray(new String[dataList.size()]); + for(ICommandFragment f : commandFragments) { + if(f.getName().equals(args[0].toLowerCase())) { + f.execute(sender, data); + return; + } + } + displayCommands(sender); + } else { + for(ICommandFragment f : commandFragments) { + if(f.getName().equals(args[index].toLowerCase())) { + f.execute(sender, args); + return; + } + displayCommands(sender); + } + + } + } + } + + private void displayCommands(CommandSender sender) { + sender.sendMessage(ChatHelper.getInstance().makeTitleTextComponent(new TextElement(title+":", ChatColor.GRAY))); + for(ICommandFragment f : commandFragments) { + String arguments; + if(f.getArguments() == null) { + arguments = ""; + } else { + arguments = " " + f.getArguments(); + } + sender.sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement(commandBase+f.getName() + +arguments, ChatColor.YELLOW), + new TextElement(" - ", ChatColor.GRAY), new TextElement(f.getPurpose(), ChatColor.RED))); + } + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/IAdminCommand.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/ICommandFragment.java similarity index 55% rename from Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/IAdminCommand.java rename to Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/ICommandFragment.java index 065dff85..bcda9aae 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/data/IAdminCommand.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/ICommandFragment.java @@ -1,11 +1,13 @@ -package com.noahhusby.sledgehammer.commands.data; +package com.noahhusby.sledgehammer.commands.fragments; import net.md_5.bungee.api.CommandSender; -public interface IAdminCommand { +public interface ICommandFragment { void execute(CommandSender sender, String[] args); String getName(); String getPurpose(); + + String getArguments(); } diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/admin/PermissionListAdminCommand.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/PermissionListAdminCommand.java similarity index 83% rename from Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/admin/PermissionListAdminCommand.java rename to Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/PermissionListAdminCommand.java index ccc3c88d..20be1de9 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/admin/PermissionListAdminCommand.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/PermissionListAdminCommand.java @@ -1,6 +1,6 @@ -package com.noahhusby.sledgehammer.commands.admin; +package com.noahhusby.sledgehammer.commands.fragments.admin; -import com.noahhusby.sledgehammer.commands.data.IAdminCommand; +import com.noahhusby.sledgehammer.commands.fragments.ICommandFragment; import com.noahhusby.sledgehammer.util.ChatHelper; import com.noahhusby.sledgehammer.util.TextElement; import net.md_5.bungee.api.ChatColor; @@ -8,7 +8,7 @@ import net.md_5.bungee.api.ProxyServer; import net.md_5.bungee.api.connection.ProxiedPlayer; -public class PermissionListAdminCommand implements IAdminCommand { +public class PermissionListAdminCommand implements ICommandFragment { @Override public void execute(CommandSender sender, String[] args) { @@ -41,4 +41,9 @@ public String getName() { public String getPurpose() { return "List all sledgehammer permissions for a given player"; } + + @Override + public String getArguments() { + return "[player]"; + } } diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/ServerAdminCommand.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/ServerAdminCommand.java new file mode 100644 index 00000000..ad16d0d5 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/ServerAdminCommand.java @@ -0,0 +1,56 @@ +package com.noahhusby.sledgehammer.commands.fragments.admin; + +import com.noahhusby.sledgehammer.commands.fragments.FragmentManager; +import com.noahhusby.sledgehammer.commands.fragments.ICommandFragment; +import com.noahhusby.sledgehammer.commands.fragments.admin.server.ServerAddLocationFragment; +import com.noahhusby.sledgehammer.commands.fragments.admin.server.ServerListLocationFragment; +import com.noahhusby.sledgehammer.util.ChatHelper; +import com.noahhusby.sledgehammer.util.TextElement; +import net.md_5.bungee.api.ChatColor; +import net.md_5.bungee.api.CommandSender; +import net.md_5.bungee.api.config.ServerInfo; + +import java.util.Map; + +import static net.md_5.bungee.api.ProxyServer.getInstance; + +public class ServerAdminCommand extends FragmentManager implements ICommandFragment { + + public ServerAdminCommand() { + setCommandBase("sha server "); + setTitle("Sledgehammer Server Commands"); + registerCommandFragment(new ServerAddLocationFragment()); + registerCommandFragment(new ServerListLocationFragment()); + } + + @Override + public void execute(CommandSender sender, String[] args) { + if(args.length != 0) { + for(Map.Entry s : getInstance().getServers().entrySet()) { + if(s.getValue().getName().toLowerCase().equals(args[0].toLowerCase())) { + executeFragment(sender, args, 1); + return; + } + } + sender.sendMessage(ChatHelper.getInstance().makeTitleTextComponent( + new TextElement(args[0], ChatColor.DARK_RED), new TextElement(" is not a bungeecord server!", ChatColor.RED))); + return; + } + executeFragment(sender, args, 1); + } + + @Override + public String getName() { + return "server"; + } + + @Override + public String getPurpose() { + return "Configure settings of sledgehammer server"; + } + + @Override + public String getArguments() { + return ""; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/admin/SetupAdminCommand.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/SetupAdminCommand.java similarity index 98% rename from Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/admin/SetupAdminCommand.java rename to Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/SetupAdminCommand.java index 294f6268..32998c4c 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/admin/SetupAdminCommand.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/SetupAdminCommand.java @@ -1,11 +1,10 @@ -package com.noahhusby.sledgehammer.commands.admin; +package com.noahhusby.sledgehammer.commands.fragments.admin; import com.google.common.collect.Maps; -import com.noahhusby.sledgehammer.Constants; import com.noahhusby.sledgehammer.Sledgehammer; -import com.noahhusby.sledgehammer.commands.data.IAdminCommand; import com.noahhusby.sledgehammer.commands.data.SetupAdminTracker; import com.noahhusby.sledgehammer.commands.data.SetupField; +import com.noahhusby.sledgehammer.commands.fragments.ICommandFragment; import com.noahhusby.sledgehammer.config.ServerConfig; import com.noahhusby.sledgehammer.datasets.Location; import com.noahhusby.sledgehammer.util.ChatHelper; @@ -24,13 +23,13 @@ import java.util.List; import java.util.Map; -public class SetupAdminCommand implements IAdminCommand, Listener { +public class SetupAdminCommand implements ICommandFragment, Listener { Map liveDialogs = Maps.newHashMap(); List setupFields = new ArrayList<>(); public SetupAdminCommand() { - Sledgehammer.setupAdminCommandListener(this); + Sledgehammer.setupListener(this); registerField(dialogAction.SERVER_EDIT, ChatHelper.getInstance().makeTextComponent(new TextElement("Do you want to edit this server?", ChatColor.GREEN)), ChatHelper.getInstance().makeTextComponent(new TextElement("Type ", ChatColor.GRAY), @@ -95,6 +94,11 @@ public String getPurpose() { return "Run the automatic setup prompt"; } + @Override + public String getArguments() { + return ""; + } + @EventHandler public void onChatEvent(ChatEvent e) { for(Map.Entry l : liveDialogs.entrySet()) { diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerAddLocationFragment.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerAddLocationFragment.java new file mode 100644 index 00000000..2752b301 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerAddLocationFragment.java @@ -0,0 +1,39 @@ +package com.noahhusby.sledgehammer.commands.fragments.admin.server; + +import com.noahhusby.sledgehammer.commands.fragments.FragmentManager; +import com.noahhusby.sledgehammer.commands.fragments.ICommandFragment; +import com.noahhusby.sledgehammer.data.dialogs.CountryScene; +import com.noahhusby.sledgehammer.data.dialogs.LocationSelectionScene; +import com.noahhusby.sledgehammer.handlers.DialogHandler; +import com.noahhusby.sledgehammer.util.ChatHelper; +import com.noahhusby.sledgehammer.util.TextElement; +import net.md_5.bungee.api.ChatColor; +import net.md_5.bungee.api.CommandSender; +import net.md_5.bungee.api.connection.ProxiedPlayer; + +public class ServerAddLocationFragment implements ICommandFragment { + + @Override + public void execute(CommandSender sender, String[] args) { + if(!(sender instanceof ProxiedPlayer)) { + sender.sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement("This command can only be executed by a player!", ChatColor.DARK_RED))); + return; + } + DialogHandler.getInstance().startDialog(sender, new LocationSelectionScene(args[0])); + } + + @Override + public String getName() { + return "addlocation"; + } + + @Override + public String getPurpose() { + return "Add a location to the server"; + } + + @Override + public String getArguments() { + return null; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerListLocationFragment.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerListLocationFragment.java new file mode 100644 index 00000000..d84555b9 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/commands/fragments/admin/server/ServerListLocationFragment.java @@ -0,0 +1,54 @@ +package com.noahhusby.sledgehammer.commands.fragments.admin.server; + +import com.noahhusby.sledgehammer.commands.fragments.ICommandFragment; +import com.noahhusby.sledgehammer.config.ServerConfig; +import com.noahhusby.sledgehammer.datasets.Location; +import com.noahhusby.sledgehammer.util.ChatHelper; +import com.noahhusby.sledgehammer.util.TextElement; +import net.md_5.bungee.api.ChatColor; +import net.md_5.bungee.api.CommandSender; + +import java.util.List; + +public class ServerListLocationFragment implements ICommandFragment { + @Override + public void execute(CommandSender sender, String[] args) { + List locations = ServerConfig.getInstance().getLocationsFromServer(args[0]); + if(locations == null) { + sender.sendMessage(ChatHelper.getInstance().makeTitleTextComponent(new TextElement("No locations were found on that server!", ChatColor.GRAY))); + return; + } + + if(locations.isEmpty()) { + sender.sendMessage(ChatHelper.getInstance().makeTitleTextComponent(new TextElement("No locations were found on that server!", ChatColor.GRAY))); + return; + } + + sender.sendMessage(ChatHelper.getInstance().makeTitleTextComponent(new TextElement("Locations for ", ChatColor.GRAY), + new TextElement(args[0].toLowerCase(), ChatColor.BLUE), new TextElement(":", ChatColor.GRAY))); + for(Location l : locations) { + String x = ""; + if(!l.city.equals("")) x+= ChatHelper.capitalize(l.city)+", "; + if(!l.county.equals("")) x+= ChatHelper.capitalize(l.county)+", "; + if(!l.state.equals("")) x+= ChatHelper.capitalize(l.state)+", "; + if(!l.country.equals("")) x+= ChatHelper.capitalize(l.country); + sender.sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement(ChatHelper.capitalize(l.detailType.name())+" - ", ChatColor.RED), + new TextElement(x, ChatColor.GOLD))); + } + } + + @Override + public String getName() { + return "listlocations"; + } + + @Override + public String getPurpose() { + return "List all locations on the server"; + } + + @Override + public String getArguments() { + return null; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/config/ConfigHandler.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/config/ConfigHandler.java index 1a4a45c2..5b162885 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/config/ConfigHandler.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/config/ConfigHandler.java @@ -43,7 +43,7 @@ public void init(File dataFolder) { createConfig(); try { - configuration = ConfigurationProvider.getProvider(YamlConfiguration.class).load(configurationFile); + configuration = ConfigurationProvider.getProvider(net.md_5.bungee.config.YamlConfiguration.class).load(configurationFile); } catch (IOException e) { e.printStackTrace(); } @@ -160,4 +160,6 @@ public boolean test(String t) } } + private class YamlConfiguration { + } } diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CityScene.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CityScene.java new file mode 100644 index 00000000..cf71fcc3 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CityScene.java @@ -0,0 +1,24 @@ +package com.noahhusby.sledgehammer.data.dialogs; + +import com.noahhusby.sledgehammer.data.dialogs.components.location.CityComponent; +import com.noahhusby.sledgehammer.data.dialogs.components.location.CountryComponent; +import com.noahhusby.sledgehammer.data.dialogs.components.location.StateComponent; + +public class CityScene extends DialogScene { + + private String server; + + public CityScene(String server) { + this.server = server; + registerComponent(new CityComponent()); + registerComponent(new StateComponent()); + registerComponent(new CountryComponent()); + } + + @Override + public void onFinish() { + System.out.println(getValue("city")); + System.out.println(getValue("state")); + System.out.println(getValue("country")); + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountryScene.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountryScene.java new file mode 100644 index 00000000..1a713cda --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountryScene.java @@ -0,0 +1,28 @@ +package com.noahhusby.sledgehammer.data.dialogs; + +import com.noahhusby.sledgehammer.config.ServerConfig; +import com.noahhusby.sledgehammer.config.types.Server; +import com.noahhusby.sledgehammer.data.dialogs.components.location.CountryComponent; +import com.noahhusby.sledgehammer.datasets.Location; +import net.md_5.bungee.api.ProxyServer; + +public class CountryScene extends DialogScene { + + private String server; + + public CountryScene(String server) { + this.server = server; + registerComponent(new CountryComponent()); + } + + @Override + public void onFinish() { + Location l = new Location(Location.detail.country, "", "", "", getValue("country")); + Server s = ServerConfig.getInstance().getServer(server); + + if(s == null) s = new Server(server); + + s.locations.add(l); + ServerConfig.getInstance().pushServer(s); + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountyScene.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountyScene.java new file mode 100644 index 00000000..7be8c52a --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/CountyScene.java @@ -0,0 +1,25 @@ +package com.noahhusby.sledgehammer.data.dialogs; + +import com.noahhusby.sledgehammer.data.dialogs.components.location.CityComponent; +import com.noahhusby.sledgehammer.data.dialogs.components.location.CountryComponent; +import com.noahhusby.sledgehammer.data.dialogs.components.location.CountyComponent; +import com.noahhusby.sledgehammer.data.dialogs.components.location.StateComponent; + +public class CountyScene extends DialogScene { + + private String server; + + public CountyScene(String server) { + this.server = server; + registerComponent(new CountyComponent()); + registerComponent(new StateComponent()); + registerComponent(new CountryComponent()); + } + + @Override + public void onFinish() { + System.out.println(getValue("county")); + System.out.println(getValue("state")); + System.out.println(getValue("country")); + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/DialogScene.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/DialogScene.java new file mode 100644 index 00000000..da1dc020 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/DialogScene.java @@ -0,0 +1,73 @@ +package com.noahhusby.sledgehammer.data.dialogs; + +import com.google.common.collect.Maps; +import com.noahhusby.sledgehammer.data.dialogs.components.IDialogComponent; +import com.noahhusby.sledgehammer.handlers.DialogHandler; +import net.md_5.bungee.api.CommandSender; + +import java.util.Map; + +public abstract class DialogScene implements IDialogScene { + + protected IDialogComponent currentComponent; + protected CommandSender sender; + + protected final DialogHandler dialogHandler = DialogHandler.getInstance(); + private final Map components = Maps.newHashMap(); + + @Override + public void init(CommandSender commandSender) { + this.sender = commandSender; + this.currentComponent = components.get(0); + dialogHandler.progressDialog(this, false); + } + + protected void registerComponent(IDialogComponent d) { + components.put(components.size(), d); + } + + @Override + public IDialogComponent getCurrentComponent() { + return currentComponent; + } + + @Override + public CommandSender getCommandSender() { + return sender; + } + + @Override + public void onMessage(String m) { + if(currentComponent.validateResponse(m)) { + currentComponent.setValue(m); + } else { + dialogHandler.progressDialog(this, true); + return; + } + + int x = components.size(); + for(Map.Entry c : components.entrySet()) { + if(c.getValue() == currentComponent) { + if((c.getKey() + 1) >= x) { + dialogHandler.discardDialog(this); + onFinish(); + return; + } + currentComponent = components.get(c.getKey()+1); + dialogHandler.progressDialog(this, false); + return; + } + } + dialogHandler.progressDialog(this, false); + } + + public String getValue(String key) { + for(Map.Entry s : components.entrySet()) { + if(s.getValue().getKey().toLowerCase().equals(key.toLowerCase())) { + return s.getValue().getValue(); + } + } + + return ""; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/IDialogScene.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/IDialogScene.java new file mode 100644 index 00000000..b25705fb --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/IDialogScene.java @@ -0,0 +1,12 @@ +package com.noahhusby.sledgehammer.data.dialogs; + +import com.noahhusby.sledgehammer.data.dialogs.components.IDialogComponent; +import net.md_5.bungee.api.CommandSender; + +public interface IDialogScene { + void init(CommandSender commandSender); + void onMessage(String m); + void onFinish(); + IDialogComponent getCurrentComponent(); + CommandSender getCommandSender(); +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/LocationSelectionScene.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/LocationSelectionScene.java new file mode 100644 index 00000000..9f295418 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/LocationSelectionScene.java @@ -0,0 +1,32 @@ +package com.noahhusby.sledgehammer.data.dialogs; + +import com.noahhusby.sledgehammer.data.dialogs.components.location.LocationSelectionComponent; +import com.noahhusby.sledgehammer.handlers.DialogHandler; + +public class LocationSelectionScene extends DialogScene { + + private String server; + + public LocationSelectionScene(String server) { + this.server = server; + registerComponent(new LocationSelectionComponent()); + } + + @Override + public void onFinish() { + switch(getValue("locationmode").toLowerCase()) { + case "city": + DialogHandler.getInstance().startDialog(getCommandSender(), new CityScene(server)); + break; + case "county": + DialogHandler.getInstance().startDialog(getCommandSender(), new CountyScene(server)); + break; + case "state": + DialogHandler.getInstance().startDialog(getCommandSender(), new StateScene(server)); + break; + case "country": + DialogHandler.getInstance().startDialog(getCommandSender(), new CountryScene(server)); + break; + } + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/StateScene.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/StateScene.java new file mode 100644 index 00000000..a14d6c0a --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/StateScene.java @@ -0,0 +1,22 @@ +package com.noahhusby.sledgehammer.data.dialogs; + +import com.noahhusby.sledgehammer.data.dialogs.components.location.CountryComponent; +import com.noahhusby.sledgehammer.data.dialogs.components.location.CountyComponent; +import com.noahhusby.sledgehammer.data.dialogs.components.location.StateComponent; + +public class StateScene extends DialogScene { + + private String server; + + public StateScene(String server) { + this.server = server; + registerComponent(new StateComponent()); + registerComponent(new CountryComponent()); + } + + @Override + public void onFinish() { + System.out.println(getValue("state")); + System.out.println(getValue("country")); + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/DialogComponent.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/DialogComponent.java new file mode 100644 index 00000000..d2c176db --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/DialogComponent.java @@ -0,0 +1,16 @@ +package com.noahhusby.sledgehammer.data.dialogs.components; + +import com.noahhusby.sledgehammer.data.dialogs.IDialogScene; + +public abstract class DialogComponent implements IDialogComponent { + private String value = ""; + @Override + public String getValue() { + return value; + } + + @Override + public void setValue(String v) { + this.value = v; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/IDialogComponent.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/IDialogComponent.java new file mode 100644 index 00000000..ac938964 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/IDialogComponent.java @@ -0,0 +1,19 @@ +package com.noahhusby.sledgehammer.data.dialogs.components; + +import com.noahhusby.sledgehammer.util.TextElement; + +public interface IDialogComponent { + String getKey(); + + String getValue(); + + void setValue(String v); + + String getPrompt(); + + TextElement[] getExplanation(); + + String[] getAcceptableResponses(); + + boolean validateResponse(String v); +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CityComponent.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CityComponent.java new file mode 100644 index 00000000..5bae2a21 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CityComponent.java @@ -0,0 +1,31 @@ +package com.noahhusby.sledgehammer.data.dialogs.components.location; + +import com.noahhusby.sledgehammer.data.dialogs.components.DialogComponent; +import com.noahhusby.sledgehammer.util.TextElement; + +public class CityComponent extends DialogComponent { + @Override + public String getKey() { + return "city"; + } + + @Override + public String getPrompt() { + return "What city?"; + } + + @Override + public TextElement[] getExplanation() { + return null; + } + + @Override + public String[] getAcceptableResponses() { + return new String[]{"*"}; + } + + @Override + public boolean validateResponse(String v) { + return true; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountryComponent.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountryComponent.java new file mode 100644 index 00000000..66cc7cf6 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountryComponent.java @@ -0,0 +1,31 @@ +package com.noahhusby.sledgehammer.data.dialogs.components.location; + +import com.noahhusby.sledgehammer.data.dialogs.components.DialogComponent; +import com.noahhusby.sledgehammer.util.TextElement; + +public class CountryComponent extends DialogComponent { + @Override + public String getKey() { + return "country"; + } + + @Override + public String getPrompt() { + return "What country?"; + } + + @Override + public TextElement[] getExplanation() { + return new TextElement[0]; + } + + @Override + public String[] getAcceptableResponses() { + return new String[]{"*"}; + } + + @Override + public boolean validateResponse(String v) { + return true; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountyComponent.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountyComponent.java new file mode 100644 index 00000000..bc8edf3b --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/CountyComponent.java @@ -0,0 +1,31 @@ +package com.noahhusby.sledgehammer.data.dialogs.components.location; + +import com.noahhusby.sledgehammer.data.dialogs.components.DialogComponent; +import com.noahhusby.sledgehammer.util.TextElement; + +public class CountyComponent extends DialogComponent { + @Override + public String getKey() { + return "county"; + } + + @Override + public String getPrompt() { + return "What county?"; + } + + @Override + public TextElement[] getExplanation() { + return null; + } + + @Override + public String[] getAcceptableResponses() { + return new String[]{"*"}; + } + + @Override + public boolean validateResponse(String v) { + return true; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/LocationSelectionComponent.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/LocationSelectionComponent.java new file mode 100644 index 00000000..6d628340 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/LocationSelectionComponent.java @@ -0,0 +1,36 @@ +package com.noahhusby.sledgehammer.data.dialogs.components.location; + +import com.noahhusby.sledgehammer.data.dialogs.components.DialogComponent; +import com.noahhusby.sledgehammer.util.TextElement; +import net.md_5.bungee.api.ChatColor; + +public class LocationSelectionComponent extends DialogComponent { + @Override + public String getKey() { + return "locationmode"; + } + + @Override + public String getPrompt() { + return "What type of location?"; + } + + @Override + public TextElement[] getExplanation() { + return new TextElement[]{new TextElement("Enter one of the following modes: ", ChatColor.GRAY), + new TextElement("City", ChatColor.BLUE), new TextElement(", ", ChatColor.GRAY), new TextElement("County", ChatColor.BLUE), + new TextElement(", ", ChatColor.GRAY), new TextElement("State", ChatColor.BLUE), new TextElement(", or ", ChatColor.GRAY), + new TextElement("Country", ChatColor.BLUE)}; + } + + @Override + public String[] getAcceptableResponses() { + return new String[]{"*"}; + } + + @Override + public boolean validateResponse(String v) { + String vm = v.toLowerCase().trim(); + return vm.equals("city") || vm.equals("county") || vm.equals("state") || vm.equals("country"); + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/StateComponent.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/StateComponent.java new file mode 100644 index 00000000..f8e9f757 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/data/dialogs/components/location/StateComponent.java @@ -0,0 +1,32 @@ +package com.noahhusby.sledgehammer.data.dialogs.components.location; + +import com.noahhusby.sledgehammer.data.dialogs.components.DialogComponent; +import com.noahhusby.sledgehammer.util.ChatHelper; +import com.noahhusby.sledgehammer.util.TextElement; + +public class StateComponent extends DialogComponent { + @Override + public String getKey() { + return "state"; + } + + @Override + public String getPrompt() { + return "What state?"; + } + + @Override + public TextElement[] getExplanation() { + return null; + } + + @Override + public String[] getAcceptableResponses() { + return new String[]{"*"}; + } + + @Override + public boolean validateResponse(String v) { + return true; + } +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/CommunicationHandler.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/CommunicationHandler.java deleted file mode 100644 index de1c64ff..00000000 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/CommunicationHandler.java +++ /dev/null @@ -1,70 +0,0 @@ -package com.noahhusby.sledgehammer.handlers; - -import com.noahhusby.sledgehammer.Sledgehammer; -import com.noahhusby.sledgehammer.config.ConfigHandler; -import com.noahhusby.sledgehammer.datasets.Point; -import net.md_5.bungee.api.config.ServerInfo; -import net.md_5.bungee.api.event.PluginMessageEvent; - -import java.io.*; - -public class CommunicationHandler { - public static void executeRequest(ServerInfo server, String sender, String... args) { - executeCommand(server, "request", sender, args); - } - - public static void executeCommand(ServerInfo server, String command, String sender, String... args) { - String executionMessage = String.format("%s,%s,%s,%s", command, ConfigHandler.getInstance().getConfiguration().getString("authentication-key") - , System.currentTimeMillis(), sender); - for(int x = 0; x < args.length; x++) { - executionMessage+=","+args[x]; - } - ByteArrayOutputStream stream = new ByteArrayOutputStream(); - DataOutputStream out = new DataOutputStream(stream); - try { - out.writeUTF(executionMessage); - } catch (IOException e) { - e.printStackTrace(); - } - server.sendData("sledgehammer:channel", stream.toByteArray()); - } - - public static void onIncomingMessage(PluginMessageEvent e) { - try { - DataInputStream in = new DataInputStream(new ByteArrayInputStream(e.getData())); - String incomingChannel = e.getTag(); - - if (!incomingChannel.equalsIgnoreCase("sledgehammer:channel")) return; - - String[] args = in.readUTF().split(","); - if(args.length < 3) return; - if(!args[1].equals(ConfigHandler.getInstance().getConfiguration().getString("authentication-key"))) return; - switch (args[4]) { - case "POS": - WarpHandler.getInstance().incomingLocationResponse(args[3], new Point(args[5].replaceAll("[^\\d-]", ""), - args[6].replaceAll("[^\\d-]", ""), args[7].replaceAll("[^\\d-]", ""))); - PlayerLocationHandler.getInstance().updateLocation(args[3], new Point(args[5].replaceAll("[^\\d-]", ""), - args[6].replaceAll("[^\\d-]", ""), args[7].replaceAll("[^\\d-]", ""))); - break; - } - } catch (Exception ex) { - ex.printStackTrace(); - } - } - - public static String getRawArguments(String[] args) { - if(args.length == 0) { - return ""; - } else if(args.length == 1) { - return args[0]; - } - - String arguments = args[0]; - - for(int x = 1; x < args.length; x++) { - arguments+=","+args[x]; - } - - return arguments; - } -} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/DialogHandler.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/DialogHandler.java new file mode 100644 index 00000000..94b4b388 --- /dev/null +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/DialogHandler.java @@ -0,0 +1,82 @@ +package com.noahhusby.sledgehammer.handlers; + +import com.google.common.collect.Maps; +import com.noahhusby.sledgehammer.Sledgehammer; +import com.noahhusby.sledgehammer.commands.data.SetupAdminTracker; +import com.noahhusby.sledgehammer.data.dialogs.IDialogScene; +import com.noahhusby.sledgehammer.util.ChatHelper; +import com.noahhusby.sledgehammer.util.TextElement; +import net.md_5.bungee.api.ChatColor; +import net.md_5.bungee.api.CommandSender; +import net.md_5.bungee.api.ProxyServer; +import net.md_5.bungee.api.connection.ProxiedPlayer; +import net.md_5.bungee.api.event.ChatEvent; +import net.md_5.bungee.api.event.PlayerDisconnectEvent; +import net.md_5.bungee.api.plugin.Listener; +import net.md_5.bungee.event.EventHandler; + +import java.util.Map; + +public class DialogHandler implements Listener { + private static DialogHandler mInstance = null; + + public static DialogHandler getInstance() { + if(mInstance == null) mInstance = new DialogHandler(); + return mInstance; + } + + private DialogHandler() { + Sledgehammer.setupListener(this); + } + + private Map activeScenes = Maps.newHashMap(); + + public void startDialog(CommandSender c, IDialogScene s) { + activeScenes.put(c, s); + s.init(c); + } + + public void discardDialog(IDialogScene s) { + activeScenes.remove(s.getCommandSender(), s); + } + + public void progressDialog(IDialogScene s, boolean error) { + for(int x = 0; x < 20; x++) { + s.getCommandSender().sendMessage(); + } + + if(error) { + s.getCommandSender().sendMessage(ChatHelper.getInstance().makeTextComponent(new TextElement("Invalid entry!", ChatColor.RED))); + s.getCommandSender().sendMessage(); + } + + s.getCommandSender().sendMessage(ChatHelper.getInstance().makeTitleTextComponent(new TextElement(s.getCurrentComponent().getPrompt(), ChatColor.YELLOW))); + if(s.getCurrentComponent().getExplanation() != null) { + s.getCommandSender().sendMessage(ChatHelper.getInstance().makeTextComponent(s.getCurrentComponent().getExplanation())); + } + } + + @EventHandler + public void onChatEvent(ChatEvent e) { + for(Map.Entry l : activeScenes.entrySet()) { + ProxiedPlayer p = ProxyServer.getInstance().getPlayer(l.getKey().getName()); + if(p != null) { + if(p.equals(e.getSender()) || p.equals(e.getSender())) { + e.setCancelled(true); + l.getValue().onMessage(e.getMessage()); + } + } + } + } + + @EventHandler + public void onPlayerLeave(PlayerDisconnectEvent e) { + for(CommandSender c : activeScenes.keySet()) { + if(c.getName().equals(e.getPlayer().getName())) { + activeScenes.remove(c); + return; + } + } + } + +} diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/TaskHandler.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/TaskHandler.java index 839a94c4..9fcbee33 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/TaskHandler.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/handlers/TaskHandler.java @@ -1,9 +1,8 @@ package com.noahhusby.sledgehammer.handlers; -import com.noahhusby.sledgehammer.Sledgehammer; import com.noahhusby.sledgehammer.config.ConfigHandler; -import com.noahhusby.sledgehammer.tasks.IResponse; -import com.noahhusby.sledgehammer.tasks.ITask; +import com.noahhusby.sledgehammer.tasks.data.IResponse; +import com.noahhusby.sledgehammer.tasks.data.ITask; import com.noahhusby.sledgehammer.tasks.data.TaskPacket; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; import net.md_5.bungee.api.event.PluginMessageEvent; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/CommandTask.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/CommandTask.java index b044a278..5caa9d29 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/CommandTask.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/CommandTask.java @@ -1,6 +1,7 @@ package com.noahhusby.sledgehammer.tasks; import com.noahhusby.sledgehammer.Constants; +import com.noahhusby.sledgehammer.tasks.data.IResponse; import com.noahhusby.sledgehammer.tasks.data.TaskPacket; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/LocationTask.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/LocationTask.java index bf1673e6..aace6f3e 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/LocationTask.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/LocationTask.java @@ -1,6 +1,7 @@ package com.noahhusby.sledgehammer.tasks; import com.noahhusby.sledgehammer.Constants; +import com.noahhusby.sledgehammer.tasks.data.IResponse; import com.noahhusby.sledgehammer.tasks.data.TaskPacket; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/SetWarpTask.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/SetWarpTask.java index 66d0ec50..95c0d312 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/SetWarpTask.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/SetWarpTask.java @@ -3,6 +3,7 @@ import com.noahhusby.sledgehammer.Constants; import com.noahhusby.sledgehammer.datasets.Point; import com.noahhusby.sledgehammer.handlers.WarpHandler; +import com.noahhusby.sledgehammer.tasks.data.IResponse; import com.noahhusby.sledgehammer.tasks.data.TaskPacket; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/Task.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/Task.java index afded8d3..7b5e4b9e 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/Task.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/Task.java @@ -1,5 +1,6 @@ package com.noahhusby.sledgehammer.tasks; +import com.noahhusby.sledgehammer.tasks.data.ITask; import com.noahhusby.sledgehammer.tasks.data.TaskPacket; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; import net.md_5.bungee.api.config.ServerInfo; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/TeleportTask.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/TeleportTask.java index 8cb039d8..44399465 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/TeleportTask.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/TeleportTask.java @@ -2,6 +2,7 @@ import com.noahhusby.sledgehammer.Constants; import com.noahhusby.sledgehammer.datasets.Point; +import com.noahhusby.sledgehammer.tasks.data.IResponse; import com.noahhusby.sledgehammer.tasks.data.TaskPacket; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/IResponse.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/data/IResponse.java similarity index 83% rename from Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/IResponse.java rename to Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/data/IResponse.java index 5d299fa5..8ebc54a5 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/IResponse.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/data/IResponse.java @@ -1,4 +1,4 @@ -package com.noahhusby.sledgehammer.tasks; +package com.noahhusby.sledgehammer.tasks.data; import com.noahhusby.sledgehammer.tasks.data.TransferPacket; diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/ITask.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/data/ITask.java similarity index 53% rename from Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/ITask.java rename to Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/data/ITask.java index fba8779e..088876f0 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/ITask.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/tasks/data/ITask.java @@ -1,6 +1,4 @@ -package com.noahhusby.sledgehammer.tasks; - -import com.noahhusby.sledgehammer.tasks.data.TaskPacket; +package com.noahhusby.sledgehammer.tasks.data; public interface ITask { String getCommandName(); diff --git a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/util/ChatHelper.java b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/util/ChatHelper.java index 7d802b1c..acf4f2f1 100644 --- a/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/util/ChatHelper.java +++ b/Sledgehammer [Bungeecord]/src/main/java/com/noahhusby/sledgehammer/util/ChatHelper.java @@ -4,7 +4,6 @@ import com.noahhusby.sledgehammer.Sledgehammer; import com.noahhusby.sledgehammer.config.ConfigHandler; import com.sun.org.apache.bcel.internal.generic.GotoInstruction; -import com.sun.org.apache.regexp.internal.RE; import net.md_5.bungee.api.ChatColor; import net.md_5.bungee.api.CommandSender; import net.md_5.bungee.api.chat.TextComponent; diff --git a/Sledgehammer [Bungeecord]/target/classes/assets/sledgehammer/data/conformal.txt b/Sledgehammer [Bungeecord]/target/classes/assets/sledgehammer/data/conformal.txt new file mode 100644 index 00000000..62c3f9c6 --- /dev/null +++ b/Sledgehammer [Bungeecord]/target/classes/assets/sledgehammer/data/conformal.txt @@ -0,0 +1,33153 @@ +[-0.6351700973139, -0.3667156266654], +[-0.6332386638017, -0.3667154970657], +[-0.6307333159771, -0.3667154668726], +[-0.627953033324, -0.3667154412246], +[-0.62497767569, -0.3667154167002], +[-0.62184831668, -0.3667153921149], +[-0.6185904798345, -0.3667153495524], +[-0.6152218639918, -0.3667153215288], +[-0.6117554087646, -0.3667152921131], +[-0.6082010785718, -0.3667152366931], +[-0.6045669121148, -0.3667152016076], +[-0.6008598155569, -0.3667156266654], +[-0.5970843007998, -0.3667156266654], +[-0.5932448034883, -0.3667156087944], +[-0.589346642021, -0.3667156031266], +[-0.5853926385977, -0.3667155936461], +[-0.5813858271793, -0.3667155705314], +[-0.5773288853414, -0.3667154199067], +[-0.5732250015773, -0.3667156265536], +[-0.5690749418579, -0.3667156266654], +[-0.5648813874288, -0.3667156266653], +[-0.5606461479909, -0.3667156266654], +[-0.5563708816832, -0.3667156266653], +[-0.5520564238951, -0.3667154006255], +[-0.5477055754422, -0.3667153500261], +[-0.5433189846719, -0.3667152882329], +[-0.5388978512169, -0.3667151851958], +[-0.5344437960554, -0.3667156266654], +[-0.5299561082675, -0.3667154888901], +[-0.5254384740664, -0.3667156266654], +[-0.5208897157761, -0.3667156238017], +[-0.516311445013, -0.3667156266654], +[-0.511704488272, -0.3667156266652], +[-0.5070696498042, -0.366715626665], +[-0.5024071428568, -0.3667151547853], +[-0.4977193275148, -0.3667156266654], +[-0.4930052554016, -0.3667156266654], +[-0.4882654443629, -0.3667154957748], +[-0.4835019104101, -0.366715445006], +[-0.478714554805, -0.3667153207538], +[-0.4739046099364, -0.3667156266654], +[-0.4690713202944, -0.3667156266654], +[-0.4642158832913, -0.3667156266654], +[-0.4593388151641, -0.3667156266654], +[-0.4544406139445, -0.3667156266654], +[-0.4495217606634, -0.3667156266654], +[-0.4445821920892, -0.3667151641332], +[-0.4396239435474, -0.3667156266654], +[-0.4346458662275, -0.3667156266654], +[-0.4296482257486, -0.3667154707082], +[-0.4246328340908, -0.3667153961262], +[-0.4195994659054, -0.3667152131445], +[-0.4145488354924, -0.3667156266654], +[-0.4094803676119, -0.3667156266654], +[-0.4043949671444, -0.3667156266654], +[-0.3992929931667, -0.3667156266654], +[-0.3941747960578, -0.3667156266654], +[-0.3890407179631, -0.3667156266654], +[-0.3838910932262, -0.3667156266654], +[-0.3787256411054, -0.366715371515], +[-0.3735459362062, -0.3667152954597], +[-0.3683521738758, -0.3667156266654], +[-0.3631435635734, -0.3667156266654], +[-0.3579209745809, -0.3667156266654], +[-0.3526847020622, -0.3667156266654], +[-0.3474350357217, -0.3667156266654], +[-0.3421722600624, -0.3667156266654], +[-0.336896654628, -0.3667156266654], +[-0.331607979197, -0.3667152808065], +[-0.3263075884672, -0.3667152323034], +[-0.3209955854524, -0.3667156266654], +[-0.3156713649331, -0.3667156266654], +[-0.3103350804551, -0.3667153430088], +[-0.3049881912735, -0.3667152587305], +[-0.2996307233776, -0.3667156266654], +[-0.2942615097155, -0.3667152661399], +[-0.2888828101098, -0.3667156266654], +[-0.2834933395229, -0.3667156266654], +[-0.2780938442086, -0.3667156266654], +[-0.2726845589507, -0.3667156266654], +[-0.2672657157619, -0.3667156266654], +[-0.2618375439986, -0.3667156266654], +[-0.2564002704722, -0.3667156266654], +[-0.2509536767794, -0.3667152796242], +[-0.2454993132722, -0.3667156266654], +[-0.2400360714168, -0.3667156266654], +[-0.2345640856315, -0.3667154017068], +[-0.2290847040314, -0.3667152592733], +[-0.2235978985277, -0.3667156266654], +[-0.218103070517, -0.3667156266654], +[-0.2126003264499, -0.3667154107394], +[-0.2070915210263, -0.3667156266654], +[-0.2015752141374, -0.3667156266654], +[-0.1960521594952, -0.3667156266654], +[-0.1905225604196, -0.3667156266654], +[-0.1849866187585, -0.3667156266654], +[-0.1794445349503, -0.3667156266654], +[-0.1738965080837, -0.3667156266654], +[-0.168342215407, -0.3667154260231], +[-0.162783415131, -0.3667156266654], +[-0.1572181860148, -0.3667155267475], +[-0.1516484421886, -0.3667153299145], +[-0.1460741086956, -0.3667156266654], +[-0.1404940299724, -0.366715450538], +[-0.1349103804866, -0.3667156266654], +[-0.1293212882195, -0.3667156251093], +[-0.1237286369425, -0.3667153387557], +[-0.1181323169837, -0.3667156266654], +[-0.1125311835048, -0.3667155505598], +[-0.1069274934963, -0.3667156266654], +[-0.1013194017709, -0.3667153128205], +[-0.09570837330089, -0.3667154255351], +[-0.09009481915143, -0.3667156266654], +[-0.08447747780695, -0.3667153265315], +[-0.07885823480855, -0.3667156266654], +[-0.07323605363854, -0.3667156266654], +[-0.06761112860125, -0.3667153322906], +[-0.06198482733564, -0.3667156266654], +[-0.05635564139802, -0.3667155586256], +[-0.05072556753063, -0.3667156066549], +[-0.04509355741854, -0.3667156266654], +[-0.03946001133611, -0.3667156266654], +[-0.03382520521212, -0.3667156266654], +[-0.02818931948403, -0.3667156266654], +[-0.02255253438973, -0.3667156266654], +[-0.01691503000114, -0.3667156266654], +[-0.01127698625763, -0.3667156266654], +[-0.005638582999264, -0.3667156266654], +[1.847108089679e-15, -0.3667156266654], +[0.005638582999268, -0.3667156266654], +[0.01127698625763, -0.3667156266654], +[0.01691503000115, -0.3667156266654], +[0.02255253438973, -0.3667156266654], +[0.02818931948403, -0.3667156266654], +[0.03382520521212, -0.3667156266654], +[0.03946001133612, -0.3667156266654], +[0.04509355741854, -0.3667156266654], +[0.05072556712433, -0.366715604886], +[0.05635614650765, -0.3667156266654], +[0.0619852957041, -0.3667154432319], +[0.06761152369553, -0.3667156266654], +[0.07323605363854, -0.3667156266654], +[0.07885823480856, -0.3667156266654], +[0.08447788440603, -0.3667156266654], +[0.09009481915143, -0.3667156266654], +[0.09570885524815, -0.3667156266654], +[0.1013198083447, -0.3667156266654], +[0.1069274934963, -0.3667156266654], +[0.1125317251258, -0.3667156266654], +[0.1181323169837, -0.3667156266654], +[0.1237290821075, -0.3667156266654], +[0.1293212878792, -0.3667156245435], +[0.1349103804866, -0.3667156266654], +[0.1404945358721, -0.3667156266654], +[0.1460741086956, -0.3667156266654], +[0.1516489077848, -0.3667156266654], +[0.1572187409891, -0.3667156266654], +[0.162783415131, -0.3667156266654], +[0.1683427359565, -0.3667156266654], +[0.1738965080838, -0.3667156266654], +[0.1794445349503, -0.3667156266654], +[0.1849866187585, -0.3667156266654], +[0.1905225604196, -0.3667156266654], +[0.1960521594952, -0.3667156266654], +[0.2015752141374, -0.3667156266654], +[0.2070915210263, -0.3667156266654], +[0.2126008753059, -0.3667156266654], +[0.218103070517, -0.3667156266654], +[0.2235978985277, -0.3667156266654], +[0.2290851494615, -0.3667156266654], +[0.2345646116224, -0.3667156266654], +[0.2400360714168, -0.3667156266654], +[0.2454993132722, -0.3667156266654], +[0.2509541195531, -0.3667156266654], +[0.2564002704722, -0.3667156266654], +[0.2618375439987, -0.3667156266654], +[0.2672657157619, -0.3667156266654], +[0.2726845589507, -0.3667156266654], +[0.2780938442086, -0.3667156266654], +[0.2834933395229, -0.3667156266654], +[0.2888828101098, -0.3667156266654], +[0.2942620182933, -0.3667156266654], +[0.2996307233776, -0.3667156266654], +[0.3049886815139, -0.3667156266654], +[0.3103356455602, -0.3667156266654], +[0.3156713649331, -0.3667156266654], +[0.3209955854524, -0.3667156266654], +[0.3263080491771, -0.3667156266654], +[0.3316084942327, -0.3667156266654], +[0.336896654628, -0.3667156266654], +[0.3421722600624, -0.3667156266654], +[0.3474350357217, -0.3667156266654], +[0.3526847020622, -0.3667156266654], +[0.3579209745809, -0.3667156266654], +[0.3631435635734, -0.3667156266654], +[0.3683521738758, -0.3667156266654], +[0.3735465045901, -0.3667156266654], +[0.3787262487932, -0.3667156266654], +[0.383891093001, -0.3667156266489], +[0.3890407179631, -0.3667156266654], +[0.3941747960578, -0.3667156266654], +[0.3992929931667, -0.3667156266654], +[0.4043949671444, -0.3667156266654], +[0.4094803676119, -0.3667156266654], +[0.4145488354924, -0.3667156266654], +[0.4196000025133, -0.3667156266654], +[0.4246334906713, -0.3667156266654], +[0.4296489116558, -0.3667156266654], +[0.4346458659344, -0.366715626638], +[0.4396239435474, -0.3667156266654], +[0.4445827204512, -0.3667156266654], +[0.4495217606635, -0.3667156266654], +[0.4544406139445, -0.3667156266654], +[0.4593388151641, -0.3667156266654], +[0.4642158832913, -0.3667156266654], +[0.4690713202944, -0.3667156266654], +[0.4739046096237, -0.3667156266653], +[0.478715216457, -0.3667156266654], +[0.4835025831249, -0.3667156266654], +[0.4882661306451, -0.3667156266654], +[0.4930052550484, -0.3667156266642], +[0.4977193275148, -0.3667156266654], +[0.5024076886867, -0.3667156266654], +[0.5070696498042, -0.366715626665], +[0.5117044882719, -0.3667156266652], +[0.516311445013, -0.3667156266654], +[0.5208897161028, -0.3667156238617], +[0.5254384737674, -0.3667156266639], +[0.529956813436, -0.3667156266654], +[0.5344437957607, -0.366715626664], +[0.5388984204549, -0.3667156266654], +[0.5433196205147, -0.3667156266654], +[0.5477062581472, -0.3667156266654], +[0.5520571148203, -0.3667156266654], +[0.5563708816837, -0.3667156266654], +[0.5606461479909, -0.3667156266654], +[0.5648813874292, -0.3667156266654], +[0.5690749418579, -0.3667156266654], +[0.5732250018003, -0.3667156266654], +[0.5773295826238, -0.3667156266636], +[0.5813858269512, -0.3667155704813], +[0.5853926383501, -0.3667155935923], +[0.5893466417545, -0.3667156030693], +[0.5932448032047, -0.3667156087341], +[0.5970843002, -0.3667156266605], +[0.6008598150395, -0.3667156266645], +[0.6045674014662, -0.3667156266633], +[0.6082016184861, -0.3667156266625], +[0.6117559498681, -0.3667156266646], +[0.6152224285476, -0.3667156266637], +[0.618591056973, -0.3667156266594], +[0.621848859512, -0.3667156266621], +[0.6249782101179, -0.3667156266622], +[0.6279535478163, -0.3667156266547], +[0.6307337950092, -0.3667156266596], +[0.6332390780071, -0.3667156265926], +[0.6351700973139, -0.3667156266654], +[-0.6342042681505, -0.3650430151451], +[-0.6317108510898, -0.3647184299268], +[-0.628971828904, -0.3645158804729], +[-0.6260376749537, -0.3643674706112], +[-0.6229462836853, -0.3642493113158], +[-0.6197232358938, -0.364150583404], +[-0.6163866225566, -0.3640654717298], +[-0.6129498782272, -0.3639904795325], +[-0.6094233814073, -0.3639233329736], +[-0.6058154037608, -0.3638624659109], +[-0.6021327040514, -0.3638067511096], +[-0.5983809176941, -0.3637553485574], +[-0.5945648226304, -0.3637076144282], +[-0.5906885269803, -0.3636630436715], +[-0.5867556053053, -0.3636212323004], +[-0.5827691999821, -0.3635818517599], +[-0.5787320982334, -0.363544630996], +[-0.5746467917184, -0.363509343592], +[-0.5705155233903, -0.363475798341], +[-0.566340324862, -0.3634438322025], +[-0.5621230465801, -0.3634133049515], +[-0.5578653824678, -0.3633840950522], +[-0.5535688902563, -0.3633560964325], +[-0.5492350084233, -0.3633292159346], +[-0.5448650703745, -0.3633033712673], +[-0.5404603165069, -0.3632784893645], +[-0.5360219044361, -0.363254505037], +[-0.5315509177835, -0.3632313598681], +[-0.5270483737548, -0.3632090012968], +[-0.5225152297116, -0.363187381854], +[-0.5179523889012, -0.3631664585201], +[-0.5133607054745, -0.363146192182], +[-0.5087409889005, -0.3631265471716], +[-0.5040940078671, -0.3631074908718], +[-0.4994204937373, -0.3630889933763], +[-0.49472114363, -0.3630710271986], +[-0.4899966231677, -0.3630535670174], +[-0.4852475689398, -0.3630365894562], +[-0.4804745907158, -0.3630200728899], +[-0.4756782734407, -0.3630039972758], +[-0.4708591790379, -0.3629883440046], +[-0.4660178480427, -0.3629730957683], +[-0.4611548010862, -0.3629582364435], +[-0.4562705402458, -0.3629437509881], +[-0.4513655502782, -0.3629296253483], +[-0.4464402997461, -0.3629158463762], +[-0.4414952420503, -0.3629024017554], +[-0.4365308163781, -0.3628892799347], +[-0.4315474485748, -0.3628764700678], +[-0.4265455519467, -0.3628639619594], +[-0.4215255280019, -0.3628517460162], +[-0.4164877671356, -0.3628398132021], +[-0.4114326492643, -0.3628281549983], +[-0.4063605444135, -0.3628167633663], +[-0.4012718132637, -0.3628056307144], +[-0.3961668076581, -0.3627947498673], +[-0.3910458710754, -0.3627841140379], +[-0.3859093390697, -0.3627737168013], +[-0.3807575396826, -0.362763552072], +[-0.3755907938272, -0.3627536140816], +[-0.3704094156474, -0.362743897359], +[-0.3652137128553, -0.3627343967119], +[-0.3600039870468, -0.3627251072101], +[-0.3547805339984, -0.3627160241694], +[-0.3495436439455, -0.3627071431372], +[-0.344293601845, -0.3626984598791], +[-0.3390306876221, -0.3626899703661], +[-0.3337551764028, -0.3626816707633], +[-0.3284673387338, -0.3626735574188], +[-0.3231674407894, -0.3626656268537], +[-0.3178557445681, -0.3626578757527], +[-0.3125325080774, -0.3626503009554], +[-0.3071979855099, -0.3626428994479], +[-0.3018524274094, -0.3626356683554], +[-0.2964960808288, -0.362628604935], +[-0.2911291894801, -0.3626217065687], +[-0.2857519938765, -0.3626149707574], +[-0.2803647314681, -0.362608395115], +[-0.2749676367707, -0.3626019773626], +[-0.2695609414883, -0.3625957153236], +[-0.2641448746306, -0.3625896069188], +[-0.258719662624, -0.3625836501614], +[-0.2532855294186, -0.3625778431533], +[-0.2478426965901, -0.3625721840804], +[-0.242391383437, -0.3625666712094], +[-0.2369318070738, -0.3625613028835], +[-0.2314641825205, -0.3625560775194], +[-0.225988722788, -0.3625509936044], +[-0.2205056389605, -0.3625460496924], +[-0.215015140274, -0.3625412444021], +[-0.2095174341923, -0.3625365764135], +[-0.2040127264802, -0.3625320444661], +[-0.1985012212722, -0.3625276473548], +[-0.1929831211429, -0.3625233839306], +[-0.1874586271691, -0.3625192530956], +[-0.1819279389946, -0.3625152538023], +[-0.1763912548901, -0.3625113850514], +[-0.1708487718123, -0.3625076458899], +[-0.1653006854606, -0.3625040354098], +[-0.1597471903318, -0.3625005527458], +[-0.1541884797736, -0.3624971970743], +[-0.1486247460366, -0.3624939676117], +[-0.1430561803239, -0.3624908636131], +[-0.1374829728403, -0.362487884371], +[-0.1319053128393, -0.362485029214], +[-0.12632338867, -0.3624822975058], +[-0.1207373878214, -0.362479688644], +[-0.1151474969667, -0.3624772020591], +[-0.1095539020058, -0.3624748372135], +[-0.1039567881079, -0.3624725936009], +[-0.09835633975163, -0.3624704707448], +[-0.09275274076572, -0.3624684681984], +[-0.08714617436821, -0.3624665855435], +[-0.08153682320506, -0.3624648223899], +[-0.07592486938806, -0.3624631783747], +[-0.07031049453211, -0.362461653162], +[-0.06469387979194, -0.3624602464416], +[-0.05907520589831, -0.3624589579297], +[-0.05345465319362, -0.3624577873671], +[-0.04783240166716, -0.3624567345198], +[-0.04220863098995, -0.3624557991782], +[-0.03658352054921, -0.3624549811568], +[-0.03095724948243, -0.362454280294], +[-0.0253299967113, -0.3624536964516], +[-0.01970194097528, -0.3624532295149], +[-0.01407326086502, -0.3624528793923], +[-0.008444134855606, -0.3624526460153], +[-0.002814741339652, -0.3624525293382], +[0.002814741339656, -0.3624525293382], +[0.008444134855609, -0.3624526460153], +[0.01407326086503, -0.3624528793923], +[0.01970194097528, -0.3624532295149], +[0.0253299967113, -0.3624536964516], +[0.03095724948243, -0.362454280294], +[0.03658352054921, -0.3624549811568], +[0.04220863098996, -0.3624557991782], +[0.04783240166716, -0.3624567345198], +[0.05345465319362, -0.3624577873671], +[0.05907520589832, -0.3624589579297], +[0.06469387979195, -0.3624602464416], +[0.07031049453211, -0.362461653162], +[0.07592486938806, -0.3624631783747], +[0.08153682320507, -0.3624648223899], +[0.08714617436822, -0.3624665855435], +[0.09275274076572, -0.3624684681984], +[0.09835633975163, -0.3624704707448], +[0.1039567881079, -0.3624725936009], +[0.1095539020059, -0.3624748372135], +[0.1151474969667, -0.3624772020591], +[0.1207373878214, -0.362479688644], +[0.12632338867, -0.3624822975058], +[0.1319053128393, -0.362485029214], +[0.1374829728403, -0.362487884371], +[0.1430561803239, -0.3624908636131], +[0.1486247460367, -0.3624939676117], +[0.1541884797737, -0.3624971970743], +[0.1597471903318, -0.3625005527458], +[0.1653006854606, -0.3625040354098], +[0.1708487718124, -0.3625076458899], +[0.1763912548901, -0.3625113850514], +[0.1819279389946, -0.3625152538023], +[0.1874586271691, -0.3625192530956], +[0.1929831211429, -0.3625233839306], +[0.1985012212722, -0.3625276473548], +[0.2040127264798, -0.3625320444656], +[0.2095174341923, -0.3625365764135], +[0.215015140274, -0.3625412444021], +[0.2205056389605, -0.3625460496924], +[0.225988722788, -0.3625509936044], +[0.2314641825205, -0.3625560775194], +[0.2369318070738, -0.3625613028835], +[0.242391383437, -0.3625666712094], +[0.2478426965901, -0.3625721840804], +[0.2532855294186, -0.3625778431533], +[0.258719662624, -0.3625836501614], +[0.2641448746306, -0.3625896069188], +[0.2695609414884, -0.3625957153236], +[0.2749676367707, -0.3626019773626], +[0.2803647314681, -0.362608395115], +[0.2857519938765, -0.3626149707574], +[0.2911291894801, -0.3626217065687], +[0.2964960808288, -0.362628604935], +[0.3018524274094, -0.3626356683554], +[0.3071979855099, -0.3626428994479], +[0.3125325080774, -0.3626503009554], +[0.3178557445681, -0.3626578757527], +[0.3231674407894, -0.3626656268537], +[0.3284673387337, -0.3626735574188], +[0.3337551764028, -0.3626816707634], +[0.3390306876221, -0.3626899703661], +[0.344293601845, -0.3626984598791], +[0.3495436439455, -0.3627071431372], +[0.3547805339984, -0.3627160241694], +[0.3600039870468, -0.3627251072101], +[0.3652137128553, -0.3627343967119], +[0.3704094156474, -0.362743897359], +[0.3755907938272, -0.3627536140816], +[0.3807575396827, -0.362763552072], +[0.3859093390697, -0.3627737168013], +[0.3910458710754, -0.3627841140379], +[0.3961668076581, -0.3627947498673], +[0.4012718132637, -0.3628056307144], +[0.4063605444135, -0.3628167633663], +[0.4114326492643, -0.3628281549983], +[0.4164877671356, -0.3628398132021], +[0.4215255280019, -0.3628517460162], +[0.4265455519467, -0.3628639619594], +[0.4315474485748, -0.3628764700678], +[0.4365308163781, -0.3628892799347], +[0.4414952420502, -0.3629024017554], +[0.446440299746, -0.3629158463762], +[0.4513655502783, -0.3629296253483], +[0.4562705402459, -0.3629437509881], +[0.4611548010862, -0.3629582364435], +[0.4660178480427, -0.3629730957683], +[0.4708591790379, -0.3629883440046], +[0.4756782734407, -0.3630039972758], +[0.4804745907158, -0.3630200728899], +[0.4852475689399, -0.3630365894562], +[0.4899966231678, -0.3630535670174], +[0.4947211436299, -0.3630710271985], +[0.4994204937369, -0.3630889933762], +[0.5040940078663, -0.3631074908715], +[0.5087409889014, -0.3631265471719], +[0.5133607054748, -0.3631461921821], +[0.5179523889013, -0.3631664585201], +[0.5225152297116, -0.363187381854], +[0.5270483737548, -0.3632090012968], +[0.5315509177835, -0.3632313598681], +[0.536021904436, -0.363254505037], +[0.5404603165069, -0.3632784893645], +[0.5448650703747, -0.3633033712674], +[0.5492350084246, -0.3633292159349], +[0.5535688902631, -0.3633560964338], +[0.5578653824714, -0.3633840950528], +[0.5621230465812, -0.3634133049517], +[0.5663403248621, -0.3634438322025], +[0.5705155233902, -0.363475798341], +[0.5746467917184, -0.363509343592], +[0.5787320982334, -0.363544630996], +[0.5827691999823, -0.3635818517599], +[0.5867556053077, -0.3636212323007], +[0.5906885269803, -0.3636630436715], +[0.5945648226304, -0.3637076144282], +[0.5983809176941, -0.3637553485574], +[0.6021327040514, -0.3638067511096], +[0.6058154037608, -0.3638624659109], +[0.6094233814073, -0.3639233329736], +[0.612949878227, -0.3639904795325], +[0.616386622556, -0.3640654717297], +[0.6197232358917, -0.3641505834039], +[0.6229462836822, -0.3642493113159], +[0.6260376749537, -0.3643674706112], +[0.6289718289048, -0.3645158804727], +[0.6317108510894, -0.364718429927], +[0.6342042673467, -0.3650430165223], +[-0.6329515681202, -0.3628733380433], +[-0.6301659270239, -0.3624476418594], +[-0.6272271393764, -0.362129757762], +[-0.6241465724011, -0.3618773522893], +[-0.6209404550093, -0.3616677516674], +[-0.6176232459972, -0.3614881463078], +[-0.6142068188799, -0.3613307220946], +[-0.6107008337417, -0.3611903891517], +[-0.6071132201136, -0.3610636525997], +[-0.603450574735, -0.360948009166], +[-0.5997184615322, -0.3608416033649], +[-0.595921633886, -0.3607430205876], +[-0.5920641999799, -0.3606511567187], +[-0.5881497471803, -0.3605651327121], +[-0.5841814370187, -0.3604842367423], +[-0.5801620785486, -0.3604078838801], +[-0.5760941860081, -0.3603355872956], +[-0.5719800245457, -0.3602669372291], +[-0.5678216470082, -0.3602015853456], +[-0.5636209238272, -0.3601392328929], +[-0.5593795675472, -0.3600796216022], +[-0.5550991531412, -0.3600225266], +[-0.5507811349912, -0.3599677508208], +[-0.5464268611289, -0.3599151205429], +[-0.5420375854088, -0.3598644818077], +[-0.5376144777932, -0.3598156974924], +[-0.5331586332459, -0.3597686449187], +[-0.5286710793902, -0.3597232138731], +[-0.5241527831605, -0.3596793049589], +[-0.5196046566047, -0.3596368282144], +[-0.5150275619696, -0.3595957019482], +[-0.5104223161767, -0.3595558517498], +[-0.5057896947783, -0.3595172096462], +[-0.5011304354646, -0.3594797133784], +[-0.4964452411885, -0.3594433057777], +[-0.491734782956, -0.3594079342266], +[-0.486999702326, -0.3593735501893], +[-0.482240613657, -0.3593401088022], +[-0.4774581061333, -0.3593075685153], +[-0.4726527455943, -0.359275890777], +[-0.4678250761942, -0.3592450397553], +[-0.4629756219073, -0.3592149820916], +[-0.4581048878996, -0.3591856866825], +[-0.4532133617801, -0.359157124484], +[-0.4483015147445, -0.3591292683386], +[-0.4433698026229, -0.3591020928189], +[-0.438418666842, -0.359075574088], +[-0.4334485353096, -0.3590496897736], +[-0.4284598232288, -0.3590244188547], +[-0.4234529338507, -0.358999741559], +[-0.4184282591685, -0.3589756392698], +[-0.4133861805609, -0.3589520944416], +[-0.4083270693887, -0.3589290905238], +[-0.4032512875481, -0.3589066118905], +[-0.3981591879854, -0.3588846437764], +[-0.393051115176, -0.358863172219], +[-0.3879274055713, -0.3588421840048], +[-0.3827883880154, -0.3588216666203], +[-0.3776343841345, -0.3588016082066], +[-0.3724657087012, -0.3587819975187], +[-0.3672826699763, -0.3587628238863], +[-0.3620855700283, -0.3587440771792], +[-0.356874705034, -0.3587257477745], +[-0.3516503655606, -0.358707826526], +[-0.3464128368315, -0.3586903047369], +[-0.3411623989761, -0.3586731741334], +[-0.3358993272655, -0.3586564268407], +[-0.3306238923343, -0.3586400553606], +[-0.3253363603914, -0.3586240525506], +[-0.3200369934174, -0.3586084116047], +[-0.3147260493527, -0.3585931260349], +[-0.3094037822751, -0.3585781896545], +[-0.3040704425683, -0.3585635965624], +[-0.2987262770812, -0.3585493411279], +[-0.2933715292793, -0.3585354179772], +[-0.2880064393907, -0.358521821981], +[-0.282631244539, -0.3585085482405], +[-0.2772461788774, -0.358495592078], +[-0.2718514737112, -0.3584829490251], +[-0.266447357616, -0.3584706148132], +[-0.2610340565508, -0.3584585853633], +[-0.2556117939657, -0.3584468567779], +[-0.2501807909047, -0.358435425332], +[-0.2447412661043, -0.3584242874658], +[-0.2392934360872, -0.3584134397765], +[-0.2338375152533, -0.3584028790121], +[-0.2283737159652, -0.3583926020642], +[-0.2229022486319, -0.3583826059619], +[-0.2174233217884, -0.3583728878663], +[-0.2119371421708, -0.3583634450639], +[-0.2064439147924, -0.3583542749629], +[-0.2009438430122, -0.3583453750871], +[-0.1954371286043, -0.3583367430711], +[-0.1899239718231, -0.3583283766568], +[-0.1844045714669, -0.3583202736883], +[-0.1788791249394, -0.3583124321085], +[-0.1733478283084, -0.3583048499552], +[-0.1678108763634, -0.3582975253573], +[-0.1622684626706, -0.358290456532], +[-0.1567207796273, -0.358283641781], +[-0.1511680185133, -0.3582770794881], +[-0.1456103695417, -0.358270768116], +[-0.140048021908, -0.3582647062037], +[-0.1344811638381, -0.3582588923641], +[-0.1289099826343, -0.3582533252816], +[-0.1233346647209, -0.3582480037097], +[-0.1177553956883, -0.3582429264693], +[-0.1121723603363, -0.3582380924463], +[-0.1065857427159, -0.3582335005902], +[-0.1009957261701, -0.3582291499105], +[-0.09540249337582, -0.3582250394794], +[-0.08980622638164, -0.3582211684253], +[-0.08420710664741, -0.3582175359345], +[-0.07860531508223, -0.3582141412487], +[-0.07300103208181, -0.358210983664], +[-0.06739443756528, -0.3582080625301], +[-0.06178571101152, -0.3582053772485], +[-0.05617503149482, -0.3582029272725], +[-0.05056257772024, -0.3582007121053], +[-0.04494852805846, -0.3581987313002], +[-0.03933306058028, -0.3581969844591], +[-0.03371635309076, -0.3581954712323], +[-0.0280985831631, -0.3581941913179], +[-0.02247992817223, -0.3581931444611], +[-0.01686056532817, -0.3581923304541], +[-0.01124067170926, -0.3581917491355], +[-0.00562042429521, -0.3581914003903], +[1.656027942471e-15, -0.3581912841496], +[0.005620424295213, -0.3581914003903], +[0.01124067170927, -0.3581917491355], +[0.01686056532817, -0.3581923304541], +[0.02247992817223, -0.3581931444611], +[0.0280985831631, -0.3581941913179], +[0.03371635309076, -0.3581954712323], +[0.03933306058028, -0.3581969844591], +[0.04494852805846, -0.3581987313002], +[0.05056257772024, -0.3582007121053], +[0.05617503149482, -0.3582029272725], +[0.06178571101152, -0.3582053772485], +[0.06739443756529, -0.3582080625301], +[0.07300103208181, -0.358210983664], +[0.07860531508224, -0.3582141412487], +[0.08420710664742, -0.3582175359345], +[0.08980622638164, -0.3582211684253], +[0.09540249337583, -0.3582250394794], +[0.1009957261701, -0.3582291499105], +[0.1065857427157, -0.3582335005897], +[0.1121723603363, -0.3582380924463], +[0.1177553956883, -0.3582429264693], +[0.1233346647209, -0.3582480037097], +[0.1289099826343, -0.3582533252816], +[0.1344811638381, -0.3582588923641], +[0.140048021908, -0.3582647062037], +[0.1456103695417, -0.358270768116], +[0.1511680185133, -0.3582770794881], +[0.1567207796273, -0.358283641781], +[0.1622684626706, -0.358290456532], +[0.1678108763634, -0.3582975253573], +[0.1733478283085, -0.3583048499552], +[0.1788791249394, -0.3583124321085], +[0.1844045714669, -0.3583202736883], +[0.1899239718231, -0.3583283766568], +[0.1954371286043, -0.3583367430711], +[0.2009438430122, -0.3583453750871], +[0.2064439147924, -0.3583542749629], +[0.2119371421708, -0.3583634450639], +[0.2174233217885, -0.3583728878664], +[0.2229022486319, -0.3583826059619], +[0.2283737159652, -0.3583926020642], +[0.2338375152533, -0.3584028790121], +[0.2392934360872, -0.3584134397765], +[0.2447412661043, -0.3584242874658], +[0.2501807909048, -0.358435425332], +[0.2556117939657, -0.3584468567779], +[0.2610340565508, -0.3584585853633], +[0.266447357616, -0.3584706148132], +[0.2718514737112, -0.3584829490251], +[0.2772461788774, -0.358495592078], +[0.282631244539, -0.3585085482405], +[0.2880064393907, -0.358521821981], +[0.2933715292798, -0.3585354179775], +[0.2987262770812, -0.3585493411279], +[0.3040704425683, -0.3585635965624], +[0.3094037822751, -0.3585781896545], +[0.3147260493527, -0.3585931260349], +[0.3200369934174, -0.3586084116047], +[0.3253363603914, -0.3586240525506], +[0.3306238923344, -0.3586400553606], +[0.3358993272655, -0.3586564268407], +[0.3411623989761, -0.3586731741334], +[0.3464128368315, -0.3586903047369], +[0.3516503655606, -0.358707826526], +[0.356874705034, -0.3587257477745], +[0.3620855700283, -0.3587440771792], +[0.3672826699763, -0.3587628238863], +[0.3724657087012, -0.3587819975187], +[0.3776343841345, -0.3588016082066], +[0.3827883880154, -0.3588216666203], +[0.3879274055713, -0.3588421840048], +[0.393051115176, -0.358863172219], +[0.3981591879854, -0.3588846437764], +[0.4032512875481, -0.3589066118905], +[0.4083270693887, -0.3589290905238], +[0.4133861805609, -0.3589520944416], +[0.4184282591685, -0.3589756392698], +[0.4234529338507, -0.358999741559], +[0.4284598232288, -0.3590244188547], +[0.4334485353096, -0.3590496897736], +[0.438418666842, -0.359075574088], +[0.4433698026229, -0.3591020928189], +[0.4483015147444, -0.3591292683386], +[0.4532133617801, -0.359157124484], +[0.4581048878996, -0.3591856866824], +[0.4629756219073, -0.3592149820916], +[0.4678250761942, -0.3592450397553], +[0.4726527455943, -0.359275890777], +[0.4774581061333, -0.3593075685153], +[0.482240613657, -0.3593401088022], +[0.486999702326, -0.3593735501893], +[0.491734782956, -0.3594079342266], +[0.4964452411884, -0.3594433057777], +[0.5011304354643, -0.3594797133783], +[0.5057896947779, -0.3595172096461], +[0.5104223161774, -0.35955585175], +[0.5150275619698, -0.3595957019483], +[0.5196046566047, -0.3596368282145], +[0.5241527831605, -0.3596793049589], +[0.5286710793902, -0.3597232138731], +[0.5331586332459, -0.3597686449187], +[0.5376144777933, -0.3598156974924], +[0.5420375854091, -0.3598644818077], +[0.5464268611302, -0.3599151205431], +[0.5507811349899, -0.3599677508206], +[0.5550991531431, -0.3600225266003], +[0.5593795675468, -0.3600796216021], +[0.5636209238261, -0.3601392328928], +[0.5678216470074, -0.3602015853455], +[0.5719800245457, -0.3602669372291], +[0.5760941860084, -0.3603355872956], +[0.580162078548, -0.36040788388], +[0.5841814370163, -0.3604842367421], +[0.5881497471852, -0.3605651327125], +[0.5920641999761, -0.3606511567184], +[0.595921633886, -0.3607430205876], +[0.5997184615322, -0.3608416033649], +[0.603450574735, -0.360948009166], +[0.6071132201136, -0.3610636525997], +[0.6107008337416, -0.3611903891517], +[0.6142068188798, -0.3613307220946], +[0.6176232459975, -0.3614881463078], +[0.6209404550127, -0.3616677516667], +[0.6241465724273, -0.361877352282], +[0.6272271393764, -0.362129757762], +[0.6301659270244, -0.3624476418589], +[0.6329515676353, -0.3628733389251], +[-0.6315614046085, -0.3604655564437], +[-0.6285703233388, -0.3599807949305], +[-0.6254682663273, -0.3595881112537], +[-0.6222570400941, -0.3592602696015], +[-0.618943553886, -0.3589792897889], +[-0.615535806408, -0.3587334151169], +[-0.6120413779806, -0.3585147188143], +[-0.6084670271392, -0.3583176627765], +[-0.6048186629225, -0.3581382462167], +[-0.6011014311553, -0.3579734923566], +[-0.5973198240091, -0.3578211290361], +[-0.5934777831448, -0.3576793833312], +[-0.5895787883198, -0.3575468453085], +[-0.5856259310426, -0.357422375043], +[-0.5816219749016, -0.3573050375273], +[-0.5775694049084, -0.3571940560535], +[-0.5734704679308, -0.3570887781429], +[-0.5693272059578, -0.3569886501863], +[-0.5651414836345, -0.3568931982582], +[-0.5609150111917, -0.356802013385], +[-0.5566493636631, -0.3567147400827], +[-0.5523459970824, -0.3566310673286], +[-0.5480062622339, -0.3565507213718], +[-0.5436314163836, -0.3564734599498], +[-0.5392226333444, -0.356399067593], +[-0.5347810121569, -0.3563273517787], +[-0.5303075846197, -0.3562581397579], +[-0.5258033218443, -0.3561912759164], +[-0.5212691399919, -0.3561266195655], +[-0.5167059053124, -0.3560640430817], +[-0.51211443859, -0.3560034303298], +[-0.5074955190786, -0.3559446753195], +[-0.502849888, -0.3558876810546], +[-0.4981782516582, -0.3558323585428], +[-0.493481284231, -0.3557786259397], +[-0.4887596302699, -0.3557264078053], +[-0.4840139069503, -0.3556756344558], +[-0.4792447061012, -0.3556262413967], +[-0.4744525960412, -0.3555781688242], +[-0.469638123243, -0.3555313611864], +[-0.4648018138462, -0.3554857667947], +[-0.4599441750348, -0.3554413374796], +[-0.4550656962948, -0.3553980282841], +[-0.4501668505651, -0.35535579719], +[-0.4452480952911, -0.3553146048739], +[-0.4403098733929, -0.3552744144873], +[-0.4353526141557, -0.3552351914595], +[-0.4303767340498, -0.3551969033198], +[-0.4253826374882, -0.3551595195368], +[-0.4203707175264, -0.3551230113734], +[-0.4153413565103, -0.3550873517543], +[-0.410294926677, -0.3550525151468], +[-0.405231790713, -0.3550184774512], +[-0.4001523022725, -0.3549852159013], +[-0.3950568064608, -0.3549527089735], +[-0.389945640284, -0.3549209363034], +[-0.3848191330697, -0.3548898786093], +[-0.3796776068594, -0.3548595176224], +[-0.3745213767762, -0.3548298360215], +[-0.3693507513686, -0.3548008173745], +[-0.3641660329334, -0.3547724460827], +[-0.3589675178185, -0.3547447073305], +[-0.3537554967078, -0.3547175870386], +[-0.3485302548887, -0.3546910718205], +[-0.3432920725041, -0.3546651489422], +[-0.3380412247904, -0.3546398062849], +[-0.3327779823011, -0.3546150323101], +[-0.3275026111189, -0.3545908160277], +[-0.3222153730556, -0.3545671469654], +[-0.316916525841, -0.3545440151412], +[-0.3116063233027, -0.3545214110367], +[-0.306285015535, -0.3544993255728], +[-0.3009528490607, -0.3544777500872], +[-0.2956100669836, -0.3544566763125], +[-0.2902569091334, -0.3544360963563], +[-0.2848936122044, -0.3544160026827], +[-0.2795204098862, -0.3543963880943], +[-0.2741375329892, -0.354377245716], +[-0.2687452095637, -0.3543585689791], +[-0.2633436650136, -0.3543403516072], +[-0.2579331222051, -0.3543225876019], +[-0.2525138015703, -0.3543052712304], +[-0.2470859212064, -0.3542883970128], +[-0.2416496969707, -0.3542719597112], +[-0.2362053425714, -0.3542559543185], +[-0.2307530696548, -0.3542403760483], +[-0.2252930878887, -0.3542252203254], +[-0.2198256050428, -0.3542104827767], +[-0.2143508270656, -0.3541961592223], +[-0.2088689581587, -0.3541822456681], +[-0.2033802008479, -0.3541687382973], +[-0.1978847560519, -0.354155633464], +[-0.1923828231487, -0.3541429276858], +[-0.1868746000392, -0.3541306176375], +[-0.181360283209, -0.3541187001454], +[-0.1758400677878, -0.3541071721807], +[-0.1703141476073, -0.3540960308549], +[-0.1647827152568, -0.3540852734142], +[-0.159245962137, -0.3540748972346], +[-0.1537040785129, -0.3540648998176], +[-0.1481572535642, -0.3540552787856], +[-0.1426056754348, -0.354046031878], +[-0.137049531281, -0.3540371569469], +[-0.131489007318, -0.354028651954], +[-0.1259242888656, -0.3540205149671], +[-0.1203555603924, -0.3540127441562], +[-0.1147830055591, -0.3540053377914], +[-0.109206807261, -0.3539982942391], +[-0.1036271476693, -0.3539916119603], +[-0.09804420827142, -0.353985289507], +[-0.0924581699108, -0.3539793255209], +[-0.08686921282576, -0.3539737187302], +[-0.08127751668769, -0.3539684679485], +[-0.07568326063852, -0.3539635720719], +[-0.07008662332766, -0.3539590300782], +[-0.06448778294831, -0.3539548410247], +[-0.05888691727327, -0.3539510040466], +[-0.05328420369029, -0.3539475183561], +[-0.04767981923695, -0.3539443832409], +[-0.04207394063517, -0.3539415980629], +[-0.03646674432536, -0.3539391622575], +[-0.0308584065003, -0.3539370753326], +[-0.02524910313863, -0.3539353368677], +[-0.01963901003828, -0.3539339465136], +[-0.0140283028495, -0.3539329039915], +[-0.00841715710793, -0.3539322090925], +[-0.002805748267379, -0.3539318616777], +[0.002805748267383, -0.3539318616777], +[0.008417157107933, -0.3539322090925], +[0.0140283028495, -0.3539329039915], +[0.01963901003828, -0.3539339465136], +[0.02524910313864, -0.3539353368677], +[0.0308584065003, -0.3539370753326], +[0.03646674432537, -0.3539391622575], +[0.04207394063517, -0.3539415980629], +[0.04767981923695, -0.3539443832409], +[0.0532842036903, -0.3539475183561], +[0.05888691727328, -0.3539510040466], +[0.06448778294831, -0.3539548410247], +[0.07008662332767, -0.3539590300782], +[0.07568326063853, -0.3539635720719], +[0.0812775166877, -0.3539684679485], +[0.08686921282577, -0.3539737187302], +[0.0924581699108, -0.3539793255209], +[0.09804420827143, -0.353985289507], +[0.1036271476693, -0.3539916119603], +[0.109206807261, -0.3539982942391], +[0.1147830055591, -0.3540053377914], +[0.1203555603924, -0.3540127441562], +[0.1259242888656, -0.3540205149671], +[0.1314890073181, -0.354028651954], +[0.137049531281, -0.3540371569469], +[0.1426056754348, -0.354046031878], +[0.1481572535642, -0.3540552787856], +[0.1537040785129, -0.3540648998176], +[0.159245962137, -0.3540748972346], +[0.1647827152568, -0.3540852734142], +[0.1703141476073, -0.3540960308549], +[0.1758400677878, -0.3541071721807], +[0.181360283209, -0.3541187001454], +[0.1868746000392, -0.3541306176375], +[0.1923828231487, -0.3541429276858], +[0.1978847560519, -0.354155633464], +[0.2033802008479, -0.3541687382973], +[0.2088689581587, -0.3541822456681], +[0.2143508270656, -0.3541961592223], +[0.2198256050428, -0.3542104827767], +[0.2252930878887, -0.3542252203254], +[0.2307530696548, -0.3542403760483], +[0.2362053425714, -0.3542559543185], +[0.2416496969707, -0.3542719597112], +[0.2470859212064, -0.3542883970128], +[0.2525138015703, -0.3543052712304], +[0.2579331222051, -0.3543225876019], +[0.2633436650136, -0.3543403516072], +[0.2687452095637, -0.3543585689791], +[0.2741375329892, -0.354377245716], +[0.2795204098862, -0.3543963880943], +[0.2848936122044, -0.3544160026827], +[0.2902569091334, -0.3544360963563], +[0.2956100669836, -0.3544566763125], +[0.3009528490607, -0.3544777500872], +[0.306285015535, -0.3544993255728], +[0.3116063233027, -0.3545214110367], +[0.316916525841, -0.3545440151412], +[0.3222153730556, -0.3545671469654], +[0.3275026111189, -0.3545908160277], +[0.3327779823011, -0.3546150323101], +[0.3380412247904, -0.3546398062849], +[0.3432920725041, -0.3546651489422], +[0.3485302548887, -0.3546910718205], +[0.3537554967078, -0.3547175870386], +[0.3589675178185, -0.3547447073305], +[0.3641660329334, -0.3547724460827], +[0.3693507513686, -0.3548008173745], +[0.3745213767762, -0.3548298360215], +[0.3796776068594, -0.3548595176224], +[0.3848191330697, -0.3548898786093], +[0.389945640284, -0.3549209363034], +[0.3950568064608, -0.3549527089735], +[0.4001523022725, -0.3549852159013], +[0.405231790713, -0.3550184774512], +[0.410294926677, -0.3550525151468], +[0.4153413565103, -0.3550873517543], +[0.4203707175264, -0.3551230113734], +[0.4253826374882, -0.3551595195368], +[0.4303767340498, -0.3551969033198], +[0.4353526141557, -0.3552351914595], +[0.4403098733929, -0.3552744144873], +[0.4452480952911, -0.3553146048739], +[0.4501668505651, -0.35535579719], +[0.4550656962947, -0.3553980282841], +[0.4599441750347, -0.3554413374796], +[0.4648018138462, -0.3554857667947], +[0.4696381232431, -0.3555313611864], +[0.4744525960412, -0.3555781688242], +[0.4792447061012, -0.3556262413967], +[0.4840139069503, -0.3556756344558], +[0.4887596302699, -0.3557264078053], +[0.4934812842309, -0.3557786259397], +[0.4981782516581, -0.3558323585428], +[0.502849888, -0.3558876810546], +[0.5074955190793, -0.3559446753196], +[0.5121144385903, -0.3560034303299], +[0.5167059053125, -0.3560640430817], +[0.5212691399919, -0.3561266195655], +[0.5258033218443, -0.3561912759164], +[0.5303075846197, -0.3562581397579], +[0.534781012157, -0.3563273517787], +[0.5392226333445, -0.356399067593], +[0.543631416384, -0.3564734599499], +[0.5480062622334, -0.3565507213718], +[0.5523459970803, -0.3566310673284], +[0.556649363659, -0.3567147400823], +[0.5609150111875, -0.3568020133846], +[0.5651414836319, -0.356893198258], +[0.5693272059573, -0.3569886501863], +[0.5734704679318, -0.3570887781429], +[0.5775694049092, -0.3571940560535], +[0.5816219749015, -0.3573050375273], +[0.5856259310441, -0.3574223750431], +[0.5895787883193, -0.3575468453085], +[0.5934777831395, -0.3576793833313], +[0.5973198240012, -0.3578211290365], +[0.6011014311553, -0.3579734923566], +[0.6048186629225, -0.3581382462167], +[0.6084670271392, -0.3583176627765], +[0.6120413779806, -0.3585147188143], +[0.6155358064082, -0.3587334151168], +[0.6189435538868, -0.3589792897886], +[0.6222570400883, -0.3592602696041], +[0.6254682663294, -0.3595881112524], +[0.6285703233388, -0.3599807949305], +[0.6315614042512, -0.360465557114], +[-0.6300737045703, -0.3578888339366], +[-0.6269222987543, -0.3573626512144], +[-0.623683688177, -0.3569163324449], +[-0.6203569613325, -0.3565311962794], +[-0.6169448906322, -0.3561932986815], +[-0.6134518661962, -0.355892587253], +[-0.6098826836689, -0.3556217532339], +[-0.6062420169276, -0.3553753879217], +[-0.6025342141031, -0.3551494071833], +[-0.5987632390104, -0.3549406652459], +[-0.594932675244, -0.3547466939499], +[-0.591045754895, -0.3545655240932], +[-0.5871053951615, -0.354395560751], +[-0.5831142351014, -0.3542354946498], +[-0.5790746696398, -0.354084238], +[-0.5749888797968, -0.3539408772344], +[-0.5708588590332, -0.3538046376383], +[-0.5666864360283, -0.3536748564873], +[-0.5624732942267, -0.3535509623658], +[-0.5582209886818, -0.3534324590461], +[-0.5539309605543, -0.3533189127775], +[-0.5496045495604, -0.3532099421549], +[-0.5452430048049, -0.3531052099688], +[-0.5408474941452, -0.3530044165864], +[-0.5364191123545, -0.3529072945332], +[-0.5319588882531, -0.352813604022], +[-0.5274677909663, -0.3527231292373], +[-0.522946735427, -0.3526356752271], +[-0.5183965872375, -0.352551065286], +[-0.513818166976, -0.3524691387391], +[-0.5092122540237, -0.3523897490555], +[-0.5045795899788, -0.3523127622335], +[-0.4999208817033, -0.3522380554116], +[-0.4952368040654, -0.3521655156696], +[-0.4905280023946, -0.3520950389869], +[-0.4857950947019, -0.3520265293365], +[-0.4810386736833, -0.3519598978913], +[-0.4762593085365, -0.3518950623286], +[-0.471457546609, -0.3518319462169], +[-0.4666339148987, -0.3517704784742], +[-0.4617889214226, -0.3517105928878], +[-0.4569230564667, -0.3516522276875], +[-0.4520367937312, -0.3515953251649], +[-0.4471305913805, -0.3515398313331], +[-0.4422048930077, -0.3514856956218], +[-0.4372601285237, -0.3514328706031], +[-0.4322967149755, -0.3513813117446], +[-0.4273150573026, -0.351330977187], +[-0.4223155490372, -0.3512818275419], +[-0.4172985729516, -0.3512338257093], +[-0.4122645016594, -0.3511869367119], +[-0.4072136981744, -0.3511411275433], +[-0.4021465164294, -0.3510963670308], +[-0.3970633017605, -0.3510526257093], +[-0.3919643913578, -0.3510098757061], +[-0.3868501146869, -0.3509680906355], +[-0.3817207938827, -0.3509272455018], +[-0.3765767441173, -0.35088731661], +[-0.3714182739462, -0.3508482814842], +[-0.366245685631, -0.3508101187916], +[-0.3610592754444, -0.3507728082728], +[-0.3558593339551, -0.3507363306774], +[-0.3506461462971, -0.3507006677038], +[-0.3454199924225, -0.3506658019441], +[-0.3401811473405, -0.3506317168328], +[-0.334929881342, -0.3505983965988], +[-0.3296664602126, -0.350565826221], +[-0.3243911454334, -0.3505339913869], +[-0.319104194371, -0.3505028784544], +[-0.3138058604579, -0.3504724744154], +[-0.3084963933624, -0.3504427668626], +[-0.3031760391513, -0.3504137439578], +[-0.2978450404425, -0.3503853944026], +[-0.2925036365518, -0.3503577074112], +[-0.2871520636311, -0.3503306726844], +[-0.2817905548009, -0.3503042803853], +[-0.2764193402755, -0.3502785211172], +[-0.2710386474832, -0.3502533859015], +[-0.2656487011808, -0.3502288661585], +[-0.2602497235623, -0.3502049536882], +[-0.2548419343636, -0.3501816406525], +[-0.2494255509619, -0.3501589195587], +[-0.2440007884715, -0.3501367832441], +[-0.2385678598346, -0.3501152248606], +[-0.2331269759096, -0.3500942378612], +[-0.2276783455544, -0.3500738159866], +[-0.2222221757075, -0.3500539532532], +[-0.2167586714654, -0.3500346439409], +[-0.2112880361569, -0.3500158825822], +[-0.2058104714151, -0.3499976639519], +[-0.200326177246, -0.3499799830571], +[-0.1948353520954, -0.3499628351279], +[-0.189338192913, -0.3499462156083], +[-0.1838348952141, -0.3499301201487], +[-0.1783256531398, -0.3499145445968], +[-0.1728106595147, -0.3498994849914], +[-0.167290105903, -0.3498849375543], +[-0.1617641826628, -0.3498708986843], +[-0.1562330789984, -0.3498573649507], +[-0.1506969830121, -0.3498443330875], +[-0.1451560817529, -0.3498317999875], +[-0.1396105612654, -0.3498197626972], +[-0.1340606066363, -0.3498082184117], +[-0.1285064020406, -0.3497971644705], +[-0.1229481307851, -0.349786598352], +[-0.1173859753532, -0.3497765176702], +[-0.1118201174464, -0.3497669201706], +[-0.1062507380258, -0.3497578037264], +[-0.1006780173535, -0.3497491663348], +[-0.09510213503122, -0.3497410061145], +[-0.08952327004025, -0.3497333213016], +[-0.08394160077914, -0.3497261102477], +[-0.07835730510146, -0.3497193714168], +[-0.07277056035275, -0.349713103383], +[-0.06718154340686, -0.3497073048283], +[-0.06159043070178, -0.3497019745401], +[-0.05599739827502, -0.3496971114101], +[-0.05040262179851, -0.3496927144316], +[-0.04480627661304, -0.3496887826987], +[-0.03920853776245, -0.3496853154046], +[-0.03360958002742, -0.3496823118403], +[-0.02800957795895, -0.3496797713934], +[-0.02240870591168, -0.3496776935474], +[-0.01680713807691, -0.3496760778809], +[-0.01120504851547, -0.3496749240666], +[-0.005602611190488, -0.3496742318713], +[1.464947795262e-15, -0.349674001155], +[0.005602611190491, -0.3496742318713], +[0.01120504851547, -0.3496749240666], +[0.01680713807691, -0.3496760778809], +[0.02240870591169, -0.3496776935474], +[0.02800957795895, -0.3496797713934], +[0.03360958002742, -0.3496823118403], +[0.03920853776245, -0.3496853154046], +[0.04480627661304, -0.3496887826987], +[0.05040262179851, -0.3496927144316], +[0.05599739827502, -0.3496971114101], +[0.06159043070178, -0.3497019745401], +[0.06718154340686, -0.3497073048283], +[0.07277056035276, -0.349713103383], +[0.07835730510147, -0.3497193714168], +[0.08394160077914, -0.3497261102477], +[0.08952327004025, -0.3497333213016], +[0.09510213503122, -0.3497410061145], +[0.1006780173535, -0.3497491663348], +[0.1062507380258, -0.3497578037264], +[0.1118201174464, -0.3497669201706], +[0.1173859753532, -0.3497765176702], +[0.1229481307852, -0.349786598352], +[0.1285064020406, -0.3497971644705], +[0.1340606066365, -0.3498082184119], +[0.1396105612654, -0.3498197626972], +[0.1451560817529, -0.3498317999875], +[0.1506969830121, -0.3498443330875], +[0.1562330789984, -0.3498573649507], +[0.1617641826628, -0.3498708986843], +[0.167290105903, -0.3498849375543], +[0.1728106595147, -0.3498994849914], +[0.1783256531398, -0.3499145445968], +[0.1838348952141, -0.3499301201487], +[0.189338192913, -0.3499462156084], +[0.1948353520955, -0.3499628351279], +[0.200326177246, -0.3499799830571], +[0.2058104714151, -0.3499976639519], +[0.2112880361569, -0.3500158825822], +[0.2167586714654, -0.3500346439409], +[0.2222221757075, -0.3500539532532], +[0.2276783455544, -0.3500738159866], +[0.2331269759096, -0.3500942378612], +[0.2385678598346, -0.3501152248606], +[0.2440007884715, -0.3501367832441], +[0.2494255509619, -0.3501589195587], +[0.2548419343636, -0.3501816406525], +[0.2602497235623, -0.3502049536882], +[0.2656487011808, -0.3502288661585], +[0.2710386474832, -0.3502533859015], +[0.2764193402755, -0.3502785211172], +[0.2817905548009, -0.3503042803853], +[0.2871520636311, -0.3503306726844], +[0.2925036365518, -0.3503577074112], +[0.2978450404425, -0.3503853944026], +[0.3031760391513, -0.3504137439578], +[0.3084963933624, -0.3504427668626], +[0.3138058604579, -0.3504724744154], +[0.319104194371, -0.3505028784544], +[0.3243911454334, -0.3505339913869], +[0.3296664602126, -0.350565826221], +[0.334929881342, -0.3505983965988], +[0.3401811473405, -0.3506317168328], +[0.3454199924225, -0.3506658019441], +[0.3506461462971, -0.3507006677038], +[0.3558593339551, -0.3507363306774], +[0.3610592754444, -0.3507728082728], +[0.366245685631, -0.3508101187916], +[0.3714182739462, -0.3508482814842], +[0.3765767441173, -0.35088731661], +[0.3817207938827, -0.3509272455018], +[0.386850114687, -0.3509680906355], +[0.3919643913578, -0.3510098757061], +[0.3970633017605, -0.3510526257093], +[0.4021465164294, -0.3510963670308], +[0.4072136981744, -0.3511411275433], +[0.4122645016594, -0.3511869367119], +[0.4172985729516, -0.3512338257093], +[0.4223155490372, -0.3512818275419], +[0.4273150573025, -0.351330977187], +[0.4322967149755, -0.3513813117446], +[0.4372601285237, -0.3514328706031], +[0.4422048930077, -0.3514856956218], +[0.4471305913805, -0.3515398313331], +[0.4520367937312, -0.3515953251649], +[0.4569230564666, -0.3516522276875], +[0.4617889214225, -0.3517105928878], +[0.4666339148987, -0.3517704784742], +[0.471457546609, -0.3518319462169], +[0.4762593085366, -0.3518950623286], +[0.4810386736833, -0.3519598978913], +[0.4857950947019, -0.3520265293365], +[0.4905280023946, -0.3520950389869], +[0.4952368040654, -0.3521655156696], +[0.4999208817034, -0.3522380554116], +[0.5045795899787, -0.3523127622335], +[0.5092122540237, -0.3523897490555], +[0.5138181669758, -0.3524691387391], +[0.5183965872374, -0.352551065286], +[0.5229467354269, -0.3526356752271], +[0.5274677909663, -0.3527231292373], +[0.5319588882531, -0.352813604022], +[0.5364191123544, -0.3529072945332], +[0.5408474941454, -0.3530044165864], +[0.5452430048048, -0.3531052099688], +[0.5496045495598, -0.3532099421549], +[0.5539309605531, -0.3533189127774], +[0.558220988681, -0.353432459046], +[0.5624732942204, -0.3535509623655], +[0.5666864360261, -0.3536748564872], +[0.5708588590349, -0.3538046376383], +[0.5749888797944, -0.3539408772344], +[0.5790746696387, -0.354084238], +[0.5831142351014, -0.3542354946498], +[0.5871053951615, -0.354395560751], +[0.5910457548942, -0.3545655240933], +[0.5949326752444, -0.3547466939498], +[0.5987632390219, -0.3549406652443], +[0.6025342141031, -0.3551494071833], +[0.6062420169277, -0.3553753879217], +[0.6098826836689, -0.3556217532339], +[0.6134518661963, -0.355892587253], +[0.6169448906318, -0.3561932986817], +[0.6203569613321, -0.3565311962796], +[0.6236836881789, -0.3569163324433], +[0.6269222987637, -0.3573626512024], +[0.6300737042825, -0.357888834489], +[-0.6285090037862, -0.3551787421656], +[-0.6252252739776, -0.3546207738972], +[-0.6218695408679, -0.3541333478479], +[-0.6184401538815, -0.3537029377299], +[-0.6149379546778, -0.3533186064984], +[-0.6113652983287, -0.3529719195633], +[-0.6077252006152, -0.3526563867138], +[-0.6040208770719, -0.352366977871], +[-0.6002555077801, -0.3520997500171], +[-0.596432125371, -0.3518515722888], +[-0.5925535683423, -0.351619926219], +[-0.5886224682531, -0.3514027605422], +[-0.5846412538525, -0.351198384918], +[-0.5806121631516, -0.3510053913331], +[-0.5765372586817, -0.3508225952912], +[-0.5724184434666, -0.3506489912773], +[-0.5682574764735, -0.350483718628], +[-0.564055986972, -0.3503260350762], +[-0.559815487567, -0.3501752960203], +[-0.5555373859672, -0.350030938112], +[-0.5512229953416, -0.3498924661377], +[-0.5468735436338, -0.349759442437], +[-0.5424901817563, -0.3496314782963], +[-0.5380739908621, -0.3495082268929], +[-0.5336259887904, -0.3493893774679], +[-0.5291471357886, -0.3492746504801], +[-0.5246383396002, -0.3491637935503], +[-0.5201004599952, -0.349056578046], +[-0.5155343128166, -0.3489527961886], +[-0.5109406735997, -0.3488522585912], +[-0.5063202808173, -0.3487547921508], +[-0.5016738387966, -0.3486602382366], +[-0.4970020203467, -0.3485684511248], +[-0.4923054691296, -0.3484792966412], +[-0.4875848018059, -0.3483926509793], +[-0.4828406099804, -0.3483083996666], +[-0.478073461969, -0.3482264366581], +[-0.4732839044077, -0.3481466635379], +[-0.4684724637197, -0.3480689888144], +[-0.4636396474564, -0.3479933272956], +[-0.4587859455249, -0.3479195995339], +[-0.453911831314, -0.3478477313311], +[-0.4490177627286, -0.347777653297], +[-0.4441041831414, -0.3477093004526], +[-0.4391715222699, -0.3476426118748], +[-0.4342201969869, -0.3475775303762], +[-0.4292506120687, -0.3475140022159], +[-0.4242631608884, -0.3474519768383], +[-0.419258226059, -0.3473914066363], +[-0.4142361800296, -0.3473322467363], +[-0.4091973856406, -0.3472744548027], +[-0.4041421966396, -0.3472179908595], +[-0.3990709581633, -0.3471628171274], +[-0.3939840071859, -0.3471088978753], +[-0.388881672939, -0.3470561992835], +[-0.3837642773042, -0.3470046893187], +[-0.37863213518, -0.3469543376189], +[-0.3734855548262, -0.3469051153876], +[-0.3683248381877, -0.3468569952963], +[-0.363150281197, -0.346809951394], +[-0.3579621740602, -0.3467639590245], +[-0.3527608015254, -0.346718994749], +[-0.3475464431357, -0.3466750362749], +[-0.3423193734674, -0.3466320623894], +[-0.3370798623556, -0.3465900528983], +[-0.3318281751067, -0.3465489885685], +[-0.326564572699, -0.3465088510751], +[-0.3212893119736, -0.3464696229516], +[-0.3160026458144, -0.3464312875435], +[-0.3107048233185, -0.3463938289658], +[-0.3053960899586, -0.3463572320619], +[-0.3000766877369, -0.3463214823664], +[-0.294746855331, -0.3462865660695], +[-0.2894068282329, -0.3462524699841], +[-0.2840568388818, -0.3462191815149], +[-0.2786971167894, -0.3461866886287], +[-0.2733278886606, -0.3461549798282], +[-0.267949378508, -0.3461240441251], +[-0.262561807761, -0.346093871017], +[-0.2571653953707, -0.346064450464], +[-0.25176035791, -0.3460357728679], +[-0.2463469096688, -0.3460078290515], +[-0.240925262746, -0.3459806102401], +[-0.2354956271371, -0.3459541080437], +[-0.2300582108189, -0.3459283144397], +[-0.2246132198297, -0.3459032217572], +[-0.2191608583478, -0.3458788226623], +[-0.2137013287655, -0.3458551101434], +[-0.2082348317613, -0.3458320774983], +[-0.2027615663694, -0.3458097183211], +[-0.1972817300458, -0.3457880264908], +[-0.1917955187335, -0.3457669961594], +[-0.1863031269239, -0.3457466217417], +[-0.1808047477171, -0.345726897905], +[-0.1753005728804, -0.3457078195596], +[-0.1697907929037, -0.3456893818497], +[-0.1642755970545, -0.345671580145], +[-0.1587551734307, -0.3456544100326], +[-0.1532297090114, -0.3456378673095], +[-0.1476993897068, -0.3456219479749], +[-0.1421644004073, -0.3456066482247], +[-0.1366249250287, -0.345591964443], +[-0.1310811465599, -0.345577893198], +[-0.1255332471067, -0.3455644312355], +[-0.1199814079352, -0.3455515754733], +[-0.1144258095147, -0.3455393229966], +[-0.1088666315591, -0.3455276710533], +[-0.1033040530673, -0.345516617049], +[-0.09773825236351, -0.3455061585433], +[-0.092169407136, -0.3454962932458], +[-0.08659769447533, -0.3454870190123], +[-0.08102329091208, -0.3454783338415], +[-0.07544637245376, -0.345470235872], +[-0.06986711462122, -0.3454627233789], +[-0.06428569248444, -0.3454557947717], +[-0.05870228069791, -0.3454494485915], +[-0.05311705353547, -0.3454436835086], +[-0.04753018492477, -0.3454384983207], +[-0.04194184848139, -0.3454338919509], +[-0.03635221754251, -0.3454298634461], +[-0.03076146520045, -0.3454264119756], +[-0.02516976433575, -0.3454235368295], +[-0.0195772876502, -0.345421237418], +[-0.01398420769956, -0.3454195132704], +[-0.008390696926187, -0.3454183640342], +[-0.00279692769152, -0.3454177894747], +[0.002796927691523, -0.3454177894747], +[0.00839069692619, -0.3454183640342], +[0.01398420769956, -0.3454195132704], +[0.0195772876502, -0.345421237418], +[0.02516976433575, -0.3454235368295], +[0.03076146520045, -0.3454264119756], +[0.03635221754252, -0.3454298634461], +[0.04194184848139, -0.3454338919509], +[0.04753018492478, -0.3454384983207], +[0.05311705353547, -0.3454436835086], +[0.05870228069792, -0.3454494485915], +[0.06428569248445, -0.3454557947717], +[0.06986711462122, -0.3454627233789], +[0.07544637245376, -0.345470235872], +[0.08102329091208, -0.3454783338415], +[0.08659769447533, -0.3454870190123], +[0.092169407136, -0.3454962932458], +[0.09773825236352, -0.3455061585433], +[0.1033040530673, -0.345516617049], +[0.1088666315591, -0.3455276710533], +[0.1144258095148, -0.3455393229966], +[0.1199814079352, -0.3455515754733], +[0.1255332471067, -0.3455644312355], +[0.1310811465599, -0.345577893198], +[0.1366249250287, -0.345591964443], +[0.1421644004073, -0.3456066482247], +[0.1476993897071, -0.3456219479753], +[0.1532297090114, -0.3456378673095], +[0.1587551734307, -0.3456544100326], +[0.1642755970546, -0.345671580145], +[0.1697907929037, -0.3456893818497], +[0.1753005728804, -0.3457078195596], +[0.1808047477171, -0.345726897905], +[0.1863031269239, -0.3457466217417], +[0.1917955187335, -0.3457669961594], +[0.1972817300458, -0.3457880264908], +[0.2027615663694, -0.3458097183211], +[0.2082348317613, -0.3458320774983], +[0.2137013287655, -0.3458551101434], +[0.2191608583478, -0.3458788226623], +[0.2246132198297, -0.3459032217572], +[0.2300582108189, -0.3459283144397], +[0.2354956271371, -0.3459541080437], +[0.240925262746, -0.3459806102401], +[0.2463469096688, -0.3460078290515], +[0.25176035791, -0.3460357728679], +[0.2571653953707, -0.346064450464], +[0.262561807761, -0.346093871017], +[0.267949378508, -0.3461240441251], +[0.2733278886606, -0.3461549798282], +[0.2786971167894, -0.3461866886287], +[0.2840568388818, -0.3462191815149], +[0.2894068282329, -0.3462524699841], +[0.294746855331, -0.3462865660695], +[0.3000766877369, -0.3463214823664], +[0.3053960899586, -0.3463572320619], +[0.3107048233185, -0.3463938289658], +[0.3160026458144, -0.3464312875435], +[0.3212893119736, -0.3464696229516], +[0.326564572699, -0.3465088510751], +[0.3318281751067, -0.3465489885685], +[0.3370798623556, -0.3465900528983], +[0.3423193734674, -0.3466320623894], +[0.3475464431357, -0.3466750362749], +[0.3527608015254, -0.346718994749], +[0.3579621740602, -0.3467639590245], +[0.363150281197, -0.346809951394], +[0.3683248381877, -0.3468569952963], +[0.3734855548262, -0.3469051153876], +[0.37863213518, -0.3469543376189], +[0.3837642773042, -0.3470046893187], +[0.388881672939, -0.3470561992835], +[0.3939840071859, -0.3471088978753], +[0.3990709581633, -0.3471628171274], +[0.4041421966397, -0.3472179908595], +[0.4091973856406, -0.3472744548027], +[0.4142361800296, -0.3473322467363], +[0.419258226059, -0.3473914066363], +[0.4242631608884, -0.3474519768383], +[0.4292506120687, -0.3475140022159], +[0.4342201969869, -0.3475775303762], +[0.4391715222699, -0.3476426118748], +[0.4441041831414, -0.3477093004526], +[0.4490177627286, -0.347777653297], +[0.453911831314, -0.3478477313311], +[0.4587859455249, -0.3479195995339], +[0.4636396474564, -0.3479933272957], +[0.4684724637197, -0.3480689888144], +[0.4732839044077, -0.3481466635379], +[0.478073461969, -0.3482264366581], +[0.4828406099804, -0.3483083996666], +[0.4875848018059, -0.3483926509793], +[0.4923054691296, -0.3484792966412], +[0.4970020203468, -0.3485684511248], +[0.5016738387966, -0.3486602382366], +[0.506320280817, -0.3487547921508], +[0.5109406735991, -0.3488522585911], +[0.5155343128161, -0.3489527961886], +[0.520100459995, -0.349056578046], +[0.5246383396003, -0.3491637935503], +[0.5291471357887, -0.3492746504801], +[0.5336259887903, -0.3493893774679], +[0.5380739908621, -0.3495082268929], +[0.5424901817563, -0.3496314782963], +[0.5468735436337, -0.349759442437], +[0.5512229953415, -0.3498924661377], +[0.5555373859679, -0.350030938112], +[0.5598154875702, -0.3501752960203], +[0.564055986966, -0.3503260350763], +[0.5682574764747, -0.350483718628], +[0.5724184434683, -0.3506489912772], +[0.576537258682, -0.3508225952912], +[0.5806121631516, -0.3510053913331], +[0.5846412538525, -0.351198384918], +[0.5886224682531, -0.3514027605422], +[0.5925535683428, -0.3516199262189], +[0.5964321253753, -0.3518515722879], +[0.6002555077824, -0.3520997500166], +[0.6040208770719, -0.352366977871], +[0.6077252006152, -0.3526563867138], +[0.6113652983287, -0.3529719195633], +[0.6149379546777, -0.3533186064984], +[0.6184401538815, -0.3537029377299], +[0.6218695408684, -0.3541333478474], +[0.6252252739787, -0.3546207738956], +[0.6285090035432, -0.3551787426413], +[-0.6268800485097, -0.3523573941527], +[-0.623483258437, -0.3517737378217], +[-0.6200249939416, -0.3512533472803], +[-0.6165035431141, -0.3507860220913], +[-0.6129188142734, -0.3503630207685], +[-0.6092719900086, -0.3499772688958], +[-0.6055649435687, -0.3496230831812], +[-0.601799877417, -0.3492958929645], +[-0.5979791094939, -0.3489920016579], +[-0.5941049514841, -0.3487083959172], +[-0.5901796426293, -0.3484425975117], +[-0.5862053162538, -0.3481925497323], +[-0.5821839854535, -0.3479565304397], +[-0.5781175396955, -0.3477330853185], +[-0.5740077474916, -0.3475209763322], +[-0.569856262274, -0.3473191416235], +[-0.5656646297886, -0.3471266640613], +[-0.5614342960073, -0.3469427463654], +[-0.557166615053, -0.3467666912652], +[-0.5528628567474, -0.3465978855493], +[-0.5485242137201, -0.3464357871371], +[-0.5441518079511, -0.3462799145249], +[-0.5397466967608, -0.346129838106], +[-0.5353098782577, -0.3459851729854], +[-0.5308422962776, -0.3458455729927], +[-0.5263448448527, -0.3457107256625], +[-0.5218183722508, -0.3455803480029], +[-0.5172636846281, -0.3454541829078], +[-0.5126815493294, -0.3453319961003], +[-0.5080726978812, -0.3452135735157], +[-0.5034378286934, -0.3450987190494], +[-0.4987776095196, -0.3449872526122], +[-0.4940926796866, -0.3448790084427], +[-0.4893836521239, -0.3447738336378], +[-0.4846511152125, -0.3446715868675], +[-0.4798956344724, -0.3445721372479], +[-0.4751177541039, -0.3444753633488], +[-0.470317998399, -0.3443811523169], +[-0.4654968730353, -0.3442893991003], +[-0.4606548662633, -0.3442000057577], +[-0.4557924499988, -0.3441128808443], +[-0.4509100808288, -0.3440279388629], +[-0.4460082009389, -0.3439450997715], +[-0.4410872389697, -0.3438642885422], +[-0.4361476108093, -0.3437854347634], +[-0.4311897203266, -0.3437084722817], +[-0.4262139600518, -0.3436333388773], +[-0.4212207118077, -0.3435599759709], +[-0.4162103472971, -0.3434883283567], +[-0.411183228649, -0.3434183439605], +[-0.4061397089283, -0.3433499736182], +[-0.4010801326104, -0.3432831708751], +[-0.3960048360254, -0.3432178918006], +[-0.3909141477728, -0.34315409482], +[-0.3858083891098, -0.3430917405597], +[-0.3806878743156, -0.3430307917044], +[-0.3755529110327, -0.3429712128665], +[-0.370403800587, -0.3429129704654], +[-0.3652408382896, -0.3428560326165], +[-0.36006431372, -0.3428003690277], +[-0.3548745109929, -0.3427459509048], +[-0.3496717090098, -0.3426927508632], +[-0.3444561816964, -0.3426407428461], +[-0.3392281982265, -0.3425899020489], +[-0.3339880232335, -0.3425402048482], +[-0.3287359170114, -0.3424916287366], +[-0.3234721357036, -0.3424441522612], +[-0.3181969314827, -0.3423977549671], +[-0.3129105527212, -0.3423524173437], +[-0.3076132441526, -0.3423081207752], +[-0.3023052470253, -0.3422648474944], +[-0.2969867992481, -0.3422225805387], +[-0.2916581355296, -0.3421813037098], +[-0.2863194875095, -0.3421410015355], +[-0.2809710838851, -0.3421016592336], +[-0.2756131505313, -0.3420632626787], +[-0.2702459106146, -0.3420257983704], +[-0.2648695847031, -0.3419892534035], +[-0.2594843908707, -0.3419536154406], +[-0.2540905447972, -0.3419188726851], +[-0.2486882598637, -0.3418850138573], +[-0.2432777472446, -0.3418520281704], +[-0.2378592159953, -0.341819905309], +[-0.2324328731366, -0.341788635408], +[-0.2269989237354, -0.3417582090335], +[-0.2215575709827, -0.3417286171641], +[-0.2161090162682, -0.3416998511734], +[-0.2106534592525, -0.3416719028138], +[-0.205191097936, -0.3416447642009], +[-0.1997221287261, -0.3416184277987], +[-0.1942467465016, -0.3415928864057], +[-0.1887651446747, -0.3415681331422], +[-0.1832775152513, -0.3415441614374], +[-0.1777840488889, -0.3415209650179], +[-0.1722849349531, -0.3414985378965], +[-0.1667803615723, -0.3414768743622], +[-0.16127051569, -0.3414559689695], +[-0.1557555831163, -0.3414358165297], +[-0.1502357485779, -0.3414164121018], +[-0.1447111957664, -0.3413977509843], +[-0.1391821073851, -0.341379828707], +[-0.133648665195, -0.3413626410239], +[-0.1281110500598, -0.3413461839061], +[-0.1225694419891, -0.3413304535351], +[-0.1170240201808, -0.3413154462965], +[-0.1114749630633, -0.3413011587746], +[-0.1059224483357, -0.3412875877464], +[-0.1003666530075, -0.3412747301765], +[-0.09480775343825, -0.3412625832126], +[-0.08924592537516, -0.3412511441808], +[-0.08368134399111, -0.3412404105812], +[-0.07811418392144, -0.3412303800843], +[-0.07254461930033, -0.3412210505273], +[-0.06697282379663, -0.3412124199103], +[-0.06139897064908, -0.341204486394], +[-0.0558232327012, -0.3411972482962], +[-0.05024578243567, -0.3411907040894], +[-0.04466679200828, -0.3411848523986], +[-0.03908643328167, -0.3411796919992], +[-0.03350487785862, -0.3411752218147], +[-0.02792229711517, -0.3411714409156], +[-0.02233886223339, -0.3411683485179], +[-0.01675474423407, -0.3411659439815], +[-0.01117011400916, -0.3411642268096], +[-0.005585142354089, -0.3411631966481], +[1.528641177665e-15, -0.3411628532845], +[0.005585142354092, -0.3411631966481], +[0.01117011400916, -0.3411642268096], +[0.01675474423407, -0.3411659439815], +[0.02233886223339, -0.3411683485179], +[0.02792229711517, -0.3411714409156], +[0.03350487785863, -0.3411752218147], +[0.03908643328167, -0.3411796919992], +[0.04466679200828, -0.3411848523986], +[0.05024578243567, -0.3411907040894], +[0.05582323270121, -0.3411972482962], +[0.06139897064908, -0.341204486394], +[0.06697282379663, -0.3412124199103], +[0.07254461930034, -0.3412210505273], +[0.07811418392144, -0.3412303800843], +[0.08368134399112, -0.3412404105812], +[0.08924592537517, -0.3412511441808], +[0.09480775343825, -0.3412625832126], +[0.1003666530075, -0.3412747301765], +[0.1059224483357, -0.3412875877464], +[0.1114749630633, -0.3413011587746], +[0.1170240201808, -0.3413154462965], +[0.1225694419891, -0.3413304535351], +[0.1281110500598, -0.3413461839061], +[0.133648665195, -0.3413626410239], +[0.1391821073851, -0.341379828707], +[0.1447111957664, -0.3413977509843], +[0.1502357485779, -0.3414164121018], +[0.1557555831163, -0.3414358165297], +[0.16127051569, -0.3414559689695], +[0.1667803615723, -0.3414768743622], +[0.1722849349531, -0.3414985378965], +[0.1777840488889, -0.3415209650179], +[0.1832775152513, -0.3415441614374], +[0.1887651446748, -0.3415681331422], +[0.1942467465016, -0.3415928864057], +[0.1997221287261, -0.3416184277987], +[0.205191097936, -0.3416447642009], +[0.2106534592525, -0.3416719028138], +[0.2161090162682, -0.3416998511734], +[0.2215575709827, -0.3417286171641], +[0.2269989237354, -0.3417582090335], +[0.2324328731366, -0.341788635408], +[0.2378592159953, -0.341819905309], +[0.2432777472446, -0.3418520281704], +[0.2486882598637, -0.3418850138573], +[0.2540905447972, -0.3419188726851], +[0.2594843908707, -0.3419536154406], +[0.2648695847031, -0.3419892534035], +[0.2702459106146, -0.3420257983704], +[0.2756131505313, -0.3420632626787], +[0.2809710838851, -0.3421016592336], +[0.2863194875095, -0.3421410015355], +[0.2916581355296, -0.3421813037098], +[0.2969867992481, -0.3422225805387], +[0.3023052470253, -0.3422648474944], +[0.3076132441526, -0.3423081207752], +[0.3129105527212, -0.3423524173437], +[0.3181969314827, -0.3423977549671], +[0.3234721357036, -0.3424441522612], +[0.3287359170114, -0.3424916287366], +[0.3339880232336, -0.3425402048482], +[0.3392281982265, -0.3425899020489], +[0.3444561816964, -0.3426407428461], +[0.3496717090098, -0.3426927508632], +[0.3548745109929, -0.3427459509048], +[0.36006431372, -0.3428003690277], +[0.3652408382896, -0.3428560326165], +[0.370403800587, -0.3429129704654], +[0.3755529110327, -0.3429712128665], +[0.3806878743157, -0.3430307917044], +[0.3858083891098, -0.3430917405597], +[0.3909141477728, -0.34315409482], +[0.3960048360254, -0.3432178918006], +[0.4010801326104, -0.3432831708751], +[0.4061397089283, -0.3433499736182], +[0.411183228649, -0.3434183439605], +[0.4162103472971, -0.3434883283567], +[0.4212207118077, -0.3435599759709], +[0.4262139600518, -0.3436333388773], +[0.4311897203266, -0.3437084722817], +[0.4361476108093, -0.3437854347634], +[0.4410872389697, -0.3438642885422], +[0.4460082009389, -0.3439450997715], +[0.4509100808288, -0.3440279388629], +[0.4557924499988, -0.3441128808443], +[0.4606548662633, -0.3442000057577], +[0.4654968730353, -0.3442893991003], +[0.470317998399, -0.3443811523169], +[0.4751177541039, -0.3444753633488], +[0.4798956344724, -0.3445721372479], +[0.4846511152125, -0.3446715868675], +[0.4893836521239, -0.3447738336378], +[0.4940926796866, -0.3448790084427], +[0.4987776095196, -0.3449872526122], +[0.5034378286933, -0.3450987190494], +[0.508072697881, -0.3452135735157], +[0.5126815493293, -0.3453319961003], +[0.5172636846276, -0.3454541829077], +[0.5218183722508, -0.3455803480029], +[0.5263448448528, -0.3457107256625], +[0.5308422962777, -0.3458455729927], +[0.5353098782577, -0.3459851729854], +[0.5397466967608, -0.346129838106], +[0.5441518079511, -0.3462799145249], +[0.5485242137201, -0.3464357871371], +[0.552862856748, -0.3465978855492], +[0.5571666150551, -0.3467666912651], +[0.5614342960132, -0.346942746365], +[0.5656646297886, -0.3471266640613], +[0.5698562622806, -0.3473191416229], +[0.5740077474942, -0.3475209763319], +[0.5781175396961, -0.3477330853184], +[0.5821839854535, -0.3479565304397], +[0.5862053162538, -0.3481925497323], +[0.5901796426293, -0.3484425975117], +[0.5941049514837, -0.3487083959173], +[0.5979791094929, -0.3489920016582], +[0.601799877417, -0.3492958929645], +[0.6055649435687, -0.3496230831812], +[0.6092719900086, -0.3499772688958], +[0.6129188142734, -0.3503630207685], +[0.6165035431141, -0.3507860220913], +[0.6200249939417, -0.3512533472802], +[0.6234832584372, -0.3517737378214], +[0.6268800482842, -0.3523573946017], +[-0.6251957163272, -0.3494401014623], +[-0.6216999411244, -0.348834926025], +[-0.618150469479, -0.3482872415567], +[-0.6145457121587, -0.3477890714795], +[-0.6108851222837, -0.34733329354], +[-0.607169192827, -0.346913935025], +[-0.6033990554533, -0.3465260353552], +[-0.5995762072122, -0.3461654846336], +[-0.5957023321278, -0.3458288712962], +[-0.591779188183, -0.3455133509393], +[-0.5878085376673, -0.3452165382792], +[-0.5837921055376, -0.3449364201388], +[-0.5797315557389, -0.3446712860447], +[-0.5756284788391, -0.3444196730586], +[-0.5714843867402, -0.3441803218825], +[-0.5673007117417, -0.343952141817], +[-0.5630788082265, -0.3437341826522], +[-0.5588199557924, -0.3435256120024], +[-0.5545253632845, -0.3433256969024], +[-0.5501961730939, -0.3431337887932], +[-0.5458334655643, -0.3429493111838], +[-0.5414382633217, -0.3427717494543], +[-0.5370115354109, -0.3426006423789], +[-0.5325542012004, -0.3424355750385], +[-0.5280671340262, -0.3422761728615], +[-0.5235511645723, -0.3421220965885], +[-0.5190070839911, -0.3419730379939], +[-0.5144356467693, -0.3418287162357], +[-0.5098375733749, -0.3416888747251], +[-0.5052135526662, -0.3415532784301], +[-0.5005642441168, -0.3414217115451], +[-0.4958902798486, -0.3412939754665], +[-0.4911922664982, -0.341169887029], +[-0.48647078693, -0.3410492769627], +[-0.4817264018088, -0.340931988539], +[-0.4769596510465, -0.340817876378], +[-0.4721710551313, -0.3407068053957], +[-0.4673611163538, -0.3405986498702], +[-0.4625303199363, -0.3404932926127], +[-0.4576791350749, -0.3403906242286], +[-0.4528080159036, -0.340290542457], +[-0.4479174023849, -0.3401929515798], +[-0.4430077211353, -0.3400977618907], +[-0.4380793861905, -0.3400048892174], +[-0.4331327997158, -0.3399142544906], +[-0.4281683526665, -0.3398257833547], +[-0.4231864254012, -0.3397394058149], +[-0.4181873882548, -0.3396550559169], +[-0.413171602071, -0.339572671456], +[-0.4081394187003, -0.3394921937114], +[-0.4030911814652, -0.3394135672048], +[-0.3980272255947, -0.3393367394785], +[-0.3929478786321, -0.3392616608928], +[-0.3878534608159, -0.3391882844407], +[-0.3827442854386, -0.3391165655766], +[-0.377620659182, -0.3390464620594], +[-0.3724828824338, -0.3389779338082], +[-0.3673312495841, -0.3389109427681], +[-0.362166049306, -0.3388454527878], +[-0.3569875648184, -0.3387814295049], +[-0.3517960741353, -0.3387188402406], +[-0.3465918503007, -0.3386576539016], +[-0.3413751616097, -0.3385978408895], +[-0.3361462718191, -0.338539373016], +[-0.3309054403453, -0.3384822234249], +[-0.3256529224526, -0.3384263665181], +[-0.3203889694315, -0.338371777888], +[-0.3151138287677, -0.3383184342539], +[-0.3098277443026, -0.3382663134022], +[-0.3045309563859, -0.3382153941309], +[-0.2992237020205, -0.3381656561978], +[-0.2939062150009, -0.3381170802719], +[-0.2885787260442, -0.3380696478874], +[-0.2832414629157, -0.3380233414011], +[-0.2778946505484, -0.3379781439526], +[-0.2725385111567, -0.337934039426], +[-0.267173264346, -0.3378910124147], +[-0.2617991272161, -0.3378490481883], +[-0.2564163144617, -0.3378081326612], +[-0.2510250384664, -0.337768252362], +[-0.2456255093965, -0.337729394408], +[-0.2402179352861, -0.3376915464766], +[-0.2348025221227, -0.3376546967819], +[-0.2293794739275, -0.337618834051], +[-0.223948992833, -0.337583947502], +[-0.2185112791579, -0.3375500268235], +[-0.2130665314787, -0.3375170621546], +[-0.207614946699, -0.3374850440664], +[-0.2021567201162, -0.3374539635449], +[-0.196692045486, -0.3374238119739], +[-0.1912211150844, -0.3373945811197], +[-0.1857441197678, -0.3373662631163], +[-0.1802612490312, -0.3373388504513], +[-0.1747726910642, -0.3373123359526], +[-0.1692786328058, -0.3372867127763], +[-0.1637792599968, -0.3372619743943], +[-0.1582747572314, -0.3372381145836], +[-0.1527653080069, -0.3372151274156], +[-0.1472510947717, -0.337193007246], +[-0.1417322989729, -0.3371717487056], +[-0.1362091011018, -0.3371513466912], +[-0.1306816807386, -0.3371317963574], +[-0.1251502165961, -0.3371130931088], +[-0.1196148865618, -0.337095232592], +[-0.11407586774, -0.3370782106893], +[-0.1085333364921, -0.3370620235116], +[-0.1029874684765, -0.3370466673926], +[-0.09743843868761, -0.3370321388826], +[-0.09188642149395, -0.3370184347435], +[-0.08633159067586, -0.3370055519433], +[-0.0807741194623, -0.3369934876519], +[-0.07521418056717, -0.3369822392362], +[-0.06965194622503, -0.3369718042564], +[-0.06408758822632, -0.3369621804621], +[-0.0585212779521, -0.3369533657888], +[-0.05295318640834, -0.3369453583548], +[-0.04738348425984, -0.3369381564586], +[-0.04181234186377, -0.3369317585759], +[-0.03623992930291, -0.3369261633575], +[-0.03066641641858, -0.3369213696272], +[-0.02509197284335, -0.3369173763802], +[-0.01951676803348, -0.3369141827815], +[-0.01394097130128, -0.3369117881643], +[-0.008364751847192, -0.3369101920298], +[-0.002788278791873, -0.3369093940455], +[0.002788278791876, -0.3369093940455], +[0.008364751847195, -0.3369101920298], +[0.01394097130128, -0.3369117881643], +[0.01951676803348, -0.3369141827815], +[0.02509197284335, -0.3369173763802], +[0.03066641641859, -0.3369213696272], +[0.03623992930291, -0.3369261633575], +[0.04181234186377, -0.3369317585759], +[0.04738348425984, -0.3369381564586], +[0.05295318640834, -0.3369453583548], +[0.0585212779521, -0.3369533657888], +[0.06408758822632, -0.3369621804621], +[0.06965194622503, -0.3369718042564], +[0.07521418056717, -0.3369822392362], +[0.0807741194623, -0.3369934876519], +[0.08633159067586, -0.3370055519433], +[0.09188642149396, -0.3370184347435], +[0.09743843868761, -0.3370321388826], +[0.1029874684765, -0.3370466673926], +[0.1085333364921, -0.3370620235116], +[0.11407586774, -0.3370782106893], +[0.1196148865618, -0.337095232592], +[0.1251502165961, -0.3371130931088], +[0.1306816807386, -0.3371317963574], +[0.1362091011018, -0.3371513466912], +[0.1417322989729, -0.3371717487056], +[0.1472510947717, -0.337193007246], +[0.1527653080069, -0.3372151274156], +[0.1582747572314, -0.3372381145836], +[0.1637792599968, -0.3372619743943], +[0.1692786328058, -0.3372867127763], +[0.1747726910643, -0.3373123359526], +[0.1802612490312, -0.3373388504513], +[0.1857441197678, -0.3373662631163], +[0.1912211150844, -0.3373945811197], +[0.196692045486, -0.3374238119739], +[0.2021567201162, -0.3374539635449], +[0.207614946699, -0.3374850440664], +[0.2130665314787, -0.3375170621546], +[0.2185112791579, -0.3375500268235], +[0.223948992833, -0.337583947502], +[0.2293794739275, -0.337618834051], +[0.2348025221227, -0.3376546967819], +[0.2402179352861, -0.3376915464766], +[0.2456255093965, -0.337729394408], +[0.2510250384664, -0.337768252362], +[0.2564163144615, -0.337808132661], +[0.2617991272161, -0.3378490481883], +[0.267173264346, -0.3378910124147], +[0.2725385111567, -0.337934039426], +[0.2778946505484, -0.3379781439526], +[0.2832414629158, -0.3380233414011], +[0.2885787260442, -0.3380696478874], +[0.2939062150009, -0.3381170802719], +[0.2992237020205, -0.3381656561978], +[0.3045309563859, -0.3382153941309], +[0.3098277443026, -0.3382663134022], +[0.3151138287677, -0.3383184342539], +[0.3203889694315, -0.338371777888], +[0.3256529224526, -0.3384263665181], +[0.3309054403453, -0.3384822234249], +[0.3361462718191, -0.338539373016], +[0.3413751616097, -0.3385978408895], +[0.3465918503007, -0.3386576539016], +[0.3517960741353, -0.3387188402406], +[0.3569875648183, -0.3387814295049], +[0.362166049306, -0.3388454527878], +[0.3673312495841, -0.3389109427681], +[0.3724828824338, -0.3389779338082], +[0.377620659182, -0.3390464620594], +[0.3827442854386, -0.3391165655766], +[0.3878534608159, -0.3391882844407], +[0.3929478786321, -0.3392616608928], +[0.3980272255947, -0.3393367394785], +[0.4030911814652, -0.3394135672048], +[0.4081394187003, -0.3394921937114], +[0.413171602071, -0.3395726714559], +[0.4181873882548, -0.3396550559169], +[0.4231864254012, -0.3397394058149], +[0.4281683526665, -0.3398257833547], +[0.4331327997158, -0.3399142544906], +[0.4380793861905, -0.3400048892174], +[0.4430077211353, -0.3400977618907], +[0.4479174023849, -0.3401929515798], +[0.4528080159036, -0.340290542457], +[0.4576791350749, -0.3403906242286], +[0.4625303199362, -0.3404932926127], +[0.4673611163537, -0.3405986498702], +[0.4721710551312, -0.3407068053957], +[0.4769596510464, -0.340817876378], +[0.4817264018089, -0.340931988539], +[0.48647078693, -0.3410492769627], +[0.4911922664982, -0.341169887029], +[0.4958902798486, -0.3412939754665], +[0.5005642441168, -0.3414217115451], +[0.5052135526662, -0.3415532784301], +[0.509837573375, -0.3416888747251], +[0.5144356467697, -0.3418287162358], +[0.5190070839909, -0.3419730379939], +[0.5235511645729, -0.3421220965885], +[0.5280671340264, -0.3422761728615], +[0.5325542012004, -0.3424355750385], +[0.5370115354109, -0.3426006423789], +[0.5414382633217, -0.3427717494543], +[0.5458334655644, -0.3429493111838], +[0.550196173094, -0.3431337887932], +[0.5545253632851, -0.3433256969024], +[0.5588199557899, -0.3435256120026], +[0.5630788082213, -0.3437341826528], +[0.5673007117481, -0.3439521418161], +[0.5714843867448, -0.3441803218818], +[0.5756284788401, -0.3444196730584], +[0.5797315557386, -0.3446712860448], +[0.5837921055374, -0.3449364201389], +[0.5878085376675, -0.3452165382791], +[0.5917791881825, -0.3455133509395], +[0.5957023321231, -0.3458288712981], +[0.5995762072122, -0.3461654846336], +[0.6033990554533, -0.3465260353552], +[0.607169192827, -0.346913935025], +[0.6108851222837, -0.34733329354], +[0.6145457121587, -0.3477890714795], +[0.618150469479, -0.3482872415567], +[0.6216999411244, -0.3488349260249], +[0.6251957161291, -0.3494401018621], +[-0.6234624632477, -0.3464380780404], +[-0.6198785420887, -0.3458144634721], +[-0.6162469055914, -0.3452436452918], +[-0.6125661507517, -0.3447192036655], +[-0.6088355158113, -0.3442352324709], +[-0.6050550820717, -0.3437866434928], +[-0.6012254939015, -0.3433690989184], +[-0.5973477539714, -0.3429789170639], +[-0.5934230795296, -0.3426129747121], +[-0.5894528042952, -0.3422686171253], +[-0.5854383128533, -0.3419435798437], +[-0.5813809977393, -0.3416359227753], +[-0.5772822319702, -0.3413439756135], +[-0.5731433520487, -0.3410662930127], +[-0.5689656479923, -0.3408016179066], +[-0.5647503580518, -0.3405488514985], +[-0.5604986664634, -0.340307028677], +[-0.556211703287, -0.340075297794], +[-0.5518905454557, -0.3398529039903], +[-0.5475362186331, -0.3396391753737], +[-0.543149699519, -0.339433511513], +[-0.5387319183936, -0.3392353738128], +[-0.5342837617459, -0.3390442774257], +[-0.5298060748965, -0.3388597844227], +[-0.5252996645519, -0.3386814980001], +[-0.5207653012555, -0.3385090575441], +[-0.5162037217138, -0.3383421344064], +[-0.5116156309799, -0.338180428275], +[-0.5070017045144, -0.3380236640422], +[-0.502362590091, -0.3378715890916], +[-0.4976989095812, -0.3377239709404], +[-0.4930112606084, -0.3375805951806], +[-0.4883002180831, -0.337441263678], +[-0.483566335627, -0.3373057929893], +[-0.4788101468922, -0.337174012967], +[-0.4740321667851, -0.337045765527], +[-0.4692328926001, -0.3369209035558], +[-0.4644128050719, -0.3367992899384], +[-0.4595723693517, -0.3366807966932], +[-0.4547120359127, -0.3365653041974], +[-0.449832241393, -0.3364527004941], +[-0.4449334093781, -0.3363428806697], +[-0.4400159511293, -0.3362357462934], +[-0.4350802662624, -0.336131204912], +[-0.43012674338, -0.3360291695927], +[-0.4251557606614, -0.3359295585095], +[-0.4201676864135, -0.3358322945676], +[-0.4151628795855, -0.3357373050614], +[-0.4101416902503, -0.3356445213639], +[-0.4051044600554, -0.3355538786427], +[-0.4000515226455, -0.3354653156002], +[-0.3949832040579, -0.3353787742359], +[-0.3898998230951, -0.3352941996289], +[-0.3848016916736, -0.3352115397375], +[-0.3796891151524, -0.335130745215], +[-0.3745623926423, -0.3350517692402], +[-0.3694218172968, -0.334974567361], +[-0.3642676765864, -0.33489909735], +[-0.3591002525578, -0.3348253190708], +[-0.3539198220778, -0.3347531943541], +[-0.3487266570649, -0.3346826868836], +[-0.3435210247071, -0.3346137620888], +[-0.3383031876688, -0.3345463870467], +[-0.3330734042867, -0.3344805303895], +[-0.3278319287552, -0.3344161622192], +[-0.3225790113023, -0.3343532540273], +[-0.317314898357, -0.334291778621], +[-0.3120398327079, -0.334231710053], +[-0.3067540536541, -0.3341730235569], +[-0.3014577971487, -0.3341156954862], +[-0.2961512959358, -0.3340597032576], +[-0.2908347796804, -0.3340050252972], +[-0.2855084750931, -0.3339516409911], +[-0.280172606048, -0.3338995306379], +[-0.2748273936967, -0.3338486754048], +[-0.2694730565758, -0.3337990572863], +[-0.2641098107105, -0.3337506590653], +[-0.2587378697139, -0.3337034642762], +[-0.2533574448816, -0.3336574571704], +[-0.2479687452826, -0.3336126226842], +[-0.2425719778465, -0.3335689464077], +[-0.2371673474471, -0.3335264145563], +[-0.231755056983, -0.3334850139431], +[-0.2263353074544, -0.3334447319535], +[-0.2209082980382, -0.333405556521], +[-0.2154742261587, -0.3333674761038], +[-0.2100332875572, -0.3333304796637], +[-0.2045856763581, -0.3332945566453], +[-0.1991315851333, -0.333259696957], +[-0.193671204964, -0.3332258909523], +[-0.1882047255008, -0.3331931294129], +[-0.1827323350211, -0.3331614035321], +[-0.177254220486, -0.3331307048996], +[-0.1717705675938, -0.3331010254868], +[-0.1662815608333, -0.3330723576328], +[-0.1607873835345, -0.3330446940317], +[-0.1552882179185, -0.3330180277201], +[-0.1497842451458, -0.3329923520652], +[-0.1442756453629, -0.3329676607542], +[-0.1387625977484, -0.3329439477839], +[-0.1332452805573, -0.3329212074504], +[-0.1277238711648, -0.3328994343405], +[-0.1221985461084, -0.3328786233223], +[-0.1166694811295, -0.3328587695377], +[-0.1111368512138, -0.3328398683942], +[-0.1056008306314, -0.3328219155576], +[-0.1000615929753, -0.3328049069458], +[-0.09451931119973, -0.3327888387216], +[-0.08897415765751, -0.3327737072873], +[-0.08342630413699, -0.3327595092792], +[-0.0778759218981, -0.3327462415619], +[-0.07232318170807, -0.332733901224], +[-0.06676825387647, -0.3327224855734], +[-0.06121130828987, -0.3327119921335], +[-0.05565251444601, -0.3327024186391], +[-0.05009204148758, -0.332693763033], +[-0.04453005823566, -0.3326860234634], +[-0.03896673322274, -0.3326791982805], +[-0.03340223472557, -0.3326732860344], +[-0.0278367307977, -0.332668285473], +[-0.02227038930169, -0.3326641955396], +[-0.01670337794134, -0.332661015372], +[-0.01113586429356, -0.332658744301], +[-0.00556801584026, -0.3326573818493], +[2.765566663926e-13, -0.3326569277304], +[0.005568015840254, -0.3326573818491], +[0.01113586429357, -0.332658744301], +[0.01670337794134, -0.332661015372], +[0.02227038930169, -0.3326641955396], +[0.0278367307977, -0.332668285473], +[0.03340223472555, -0.3326732860342], +[0.03896673322274, -0.3326791982805], +[0.04453005823566, -0.3326860234634], +[0.05009204148759, -0.332693763033], +[0.05565251444601, -0.3327024186391], +[0.06121130828987, -0.3327119921335], +[0.06676825387647, -0.3327224855734], +[0.07232318170807, -0.332733901224], +[0.0778759218981, -0.3327462415619], +[0.08342630413699, -0.3327595092792], +[0.08897415765751, -0.3327737072873], +[0.09451931119973, -0.3327888387216], +[0.1000615929753, -0.3328049069458], +[0.1056008306314, -0.3328219155576], +[0.1111368512138, -0.3328398683942], +[0.1166694811295, -0.3328587695377], +[0.1221985461084, -0.3328786233223], +[0.1277238711648, -0.3328994343405], +[0.1332452805573, -0.3329212074504], +[0.1387625977484, -0.3329439477839], +[0.1442756453629, -0.3329676607542], +[0.1497842451458, -0.3329923520652], +[0.1552882179185, -0.3330180277201], +[0.1607873835345, -0.3330446940317], +[0.1662815608333, -0.3330723576328], +[0.1717705675938, -0.3331010254868], +[0.177254220486, -0.3331307048996], +[0.1827323350211, -0.3331614035321], +[0.1882047255008, -0.3331931294129], +[0.193671204964, -0.3332258909523], +[0.1991315851333, -0.333259696957], +[0.2045856763581, -0.3332945566453], +[0.2100332875572, -0.3333304796637], +[0.2154742261587, -0.3333674761038], +[0.2209082980382, -0.333405556521], +[0.2263353074544, -0.3334447319535], +[0.231755056983, -0.3334850139431], +[0.2371673474471, -0.3335264145563], +[0.2425719778465, -0.3335689464077], +[0.2479687452826, -0.3336126226842], +[0.2533574448816, -0.3336574571704], +[0.2587378697139, -0.3337034642762], +[0.2641098107105, -0.3337506590653], +[0.2694730565758, -0.3337990572863], +[0.2748273936967, -0.3338486754048], +[0.280172606048, -0.3338995306379], +[0.2855084750931, -0.3339516409911], +[0.2908347796804, -0.3340050252972], +[0.2961512959358, -0.3340597032576], +[0.3014577971487, -0.3341156954862], +[0.3067540536541, -0.3341730235569], +[0.3120398327079, -0.334231710053], +[0.317314898357, -0.334291778621], +[0.3225790113023, -0.3343532540273], +[0.3278319287552, -0.3344161622192], +[0.3330734042867, -0.3344805303895], +[0.3383031876688, -0.3345463870467], +[0.3435210247071, -0.3346137620888], +[0.3487266570649, -0.3346826868836], +[0.3539198220778, -0.3347531943541], +[0.3591002525577, -0.3348253190708], +[0.3642676765864, -0.33489909735], +[0.3694218172968, -0.334974567361], +[0.3745623926423, -0.3350517692402], +[0.3796891151524, -0.335130745215], +[0.3848016916736, -0.3352115397375], +[0.3898998230951, -0.3352941996289], +[0.3949832040579, -0.3353787742359], +[0.4000515226455, -0.3354653156002], +[0.4051044600554, -0.3355538786427], +[0.4101416902502, -0.3356445213639], +[0.4151628795855, -0.3357373050614], +[0.4201676864135, -0.3358322945676], +[0.4251557606614, -0.3359295585095], +[0.43012674338, -0.3360291695927], +[0.4350802662624, -0.336131204912], +[0.4400159511293, -0.3362357462934], +[0.4449334093781, -0.3363428806697], +[0.449832241393, -0.3364527004941], +[0.4547120359127, -0.3365653041974], +[0.4595723693516, -0.3366807966932], +[0.4644128050719, -0.3367992899384], +[0.4692328926, -0.3369209035558], +[0.474032166785, -0.337045765527], +[0.4788101468922, -0.337174012967], +[0.483566335627, -0.3373057929893], +[0.4883002180831, -0.337441263678], +[0.4930112606084, -0.3375805951806], +[0.4976989095812, -0.3377239709404], +[0.502362590091, -0.3378715890916], +[0.5070017045144, -0.3380236640422], +[0.5116156309801, -0.338180428275], +[0.5162037217132, -0.3383421344064], +[0.5207653012563, -0.338509057544], +[0.5252996645521, -0.3386814980001], +[0.5298060748965, -0.3388597844227], +[0.5342837617459, -0.3390442774257], +[0.5387319183936, -0.3392353738128], +[0.543149699519, -0.339433511513], +[0.547536218633, -0.3396391753737], +[0.5518905454559, -0.3398529039902], +[0.5562117032862, -0.3400752977941], +[0.5604986664617, -0.3403070286773], +[0.5647503580502, -0.3405488514988], +[0.5689656479977, -0.3408016179055], +[0.573143352049, -0.3410662930126], +[0.5772822319685, -0.3413439756139], +[0.581380997738, -0.3416359227757], +[0.5854383128536, -0.3419435798436], +[0.5894528042968, -0.3422686171247], +[0.593423079535, -0.3426129747097], +[0.5973477539686, -0.3429789170653], +[0.6012254938937, -0.343369098923], +[0.6050550820717, -0.3437866434928], +[0.6088355158113, -0.3442352324709], +[0.6125661507517, -0.3447192036655], +[0.6162469055914, -0.3452436452918], +[0.6198785420887, -0.3458144634721], +[0.6234624630699, -0.3464380784051], +[-0.6216852501577, -0.3433599655999], +[-0.6180218408429, -0.3427202967053], +[-0.6143154327506, -0.3421295230658], +[-0.6105648538399, -0.3415823634534], +[-0.6067692524416, -0.3410738432279], +[-0.6029284626476, -0.3405995860626], +[-0.5990428051196, -0.3401557825393], +[-0.5951129333519, -0.3397391349277], +[-0.5911397194953, -0.339346794291], +[-0.5871241718444, -0.3389762986626], +[-0.5830673763565, -0.3386255165386], +[-0.5789704558737, -0.3382925972543], +[-0.5748345421381, -0.3379759284098], +[-0.5706607569186, -0.3376740998365], +[-0.5664501995786, -0.3373858733265], +[-0.5622039392064, -0.3371101572824], +[-0.5579230098771, -0.3368459855243], +[-0.5536084081483, -0.3365924995437], +[-0.5492610920469, -0.3363489336274], +[-0.544881981088, -0.3361146023491], +[-0.5404719569787, -0.3358888900202], +[-0.5360318647666, -0.3356712417612], +[-0.5315625142617, -0.3354611559185], +[-0.527064681616, -0.3352581775994], +[-0.5225391109756, -0.3350618931392], +[-0.5179865161529, -0.3348719253493], +[-0.5134075822716, -0.33468792942], +[-0.5088029673758, -0.3345095893762], +[-0.5041733039691, -0.3343366149993], +[-0.4995192004856, -0.3341687391459], +[-0.4948412426839, -0.3340057154042], +[-0.4901399949635, -0.3338473160382], +[-0.4854160016032, -0.3336933301801], +[-0.4806697879239, -0.3335435622352], +[-0.4759018613779, -0.33339783047], +[-0.4711127125698, -0.3332559657606], +[-0.466302816209, -0.333117810478], +[-0.4614726320046, -0.3329832174951], +[-0.4566226054966, -0.3328520492974], +[-0.4517531688372, -0.3327241771871], +[-0.446864741519, -0.3325994805675], +[-0.4419577310564, -0.3324778462987], +[-0.4370325336234, -0.3323591681164], +[-0.4320895346503, -0.3322433461064], +[-0.4271291093819, -0.3321302862283], +[-0.4221516234017, -0.3320198998831], +[-0.4171574331218, -0.3319121035206], +[-0.4121468862437, -0.3318068182808], +[-0.4071203221904, -0.3317039696674], +[-0.4020780725117, -0.3316034872485], +[-0.3970204612664, -0.3315053043838], +[-0.3919478053805, -0.3314093579731], +[-0.3868604149852, -0.331315588226], +[-0.3817585937352, -0.33122393845], +[-0.3766426391085, -0.3311343548555], +[-0.3715128426893, -0.3310467863753], +[-0.3663694904349, -0.3309611844985], +[-0.3612128629285, -0.3308775031168], +[-0.3560432356173, -0.3307956983823], +[-0.3508608790383, -0.3307157285748], +[-0.3456660590321, -0.3306375539802], +[-0.3404590369451, -0.3305611367762], +[-0.3352400698218, -0.3304864409264], +[-0.3300094105864, -0.330413432082], +[-0.3247673082161, -0.3303420774901], +[-0.3195140079051, -0.3302723459076], +[-0.3142497512209, -0.3302042075214], +[-0.3089747762531, -0.3301376338739], +[-0.3036893177546, -0.3300725977928], +[-0.2983936072767, -0.3300090733255], +[-0.2930878732971, -0.3299470356782], +[-0.2877723413435, -0.3298864611583], +[-0.2824472341099, -0.3298273271199], +[-0.2771127715687, -0.329769611914], +[-0.271769171078, -0.3297132948402], +[-0.2664166474835, -0.3296583561024], +[-0.2610554132172, -0.3296047767662], +[-0.2556856783904, -0.32955253872], +[-0.2503076508847, -0.3295016246368], +[-0.2449215364378, -0.3294520179398], +[-0.2395275387269, -0.3294037027687], +[-0.2341258594482, -0.3293566639487], +[-0.2287166983934, -0.3293108869609], +[-0.2233002535243, -0.3292663579143], +[-0.2178767210428, -0.3292230635197], +[-0.2124462954604, -0.3291809910649], +[-0.2070091696636, -0.3291401283909], +[-0.201565534978, -0.3291004638697], +[-0.1961155812298, -0.3290619863838], +[-0.1906594968057, -0.329024685306], +[-0.1851974687098, -0.3289885504804], +[-0.1797296826202, -0.3289535722053], +[-0.1742563229425, -0.3289197412158], +[-0.1687775728626, -0.3288870486684], +[-0.1632936143975, -0.3288554861256], +[-0.1578046284447, -0.3288250455422], +[-0.15231079483, -0.3287957192514], +[-0.146812292355, -0.3287674999525], +[-0.141309298842, -0.3287403806988], +[-0.1358019911785, -0.3287143548863], +[-0.1302905453609, -0.328689416243], +[-0.1247751365361, -0.3286655588193], +[-0.1192559390435, -0.3286427769778], +[-0.1137331264552, -0.328621065385], +[-0.1082068716152, -0.3286004190026], +[-0.1026773466787, -0.32858083308], +[-0.09714472314971, -0.3285623031464], +[-0.09160917191865, -0.3285448250045], +[-0.08607086329879, -0.3285283947237], +[-0.08052996706245, -0.3285130086341], +[-0.07498665247641, -0.3284986633211], +[-0.06944108833685, -0.3284853556201], +[-0.06389344300403, -0.3284730826121], +[-0.05834388443595, -0.3284618416185], +[-0.05279258022227, -0.3284516301979], +[-0.04723969761751, -0.3284424461422], +[-0.0416854035739, -0.3284342874733], +[-0.036129864774, -0.3284271524401], +[-0.03057324766308, -0.3284210395159], +[-0.02501571848122, -0.3284159473963], +[-0.0194574432952, -0.3284118749974], +[-0.01389858803025, -0.3284088214537], +[-0.008339318501653, -0.3284067861174], +[-0.002779800446233, -0.328405768557], +[0.002779800446236, -0.328405768557], +[0.008339318501656, -0.3284067861174], +[0.01389858803025, -0.3284088214537], +[0.0194574432952, -0.3284118749974], +[0.02501571848122, -0.3284159473963], +[0.03057324766308, -0.3284210395159], +[0.036129864774, -0.3284271524401], +[0.0416854035739, -0.3284342874733], +[0.04723969761752, -0.3284424461422], +[0.05279258022227, -0.3284516301979], +[0.05834388443604, -0.3284618416188], +[0.06389344300403, -0.3284730826121], +[0.06944108833694, -0.3284853556203], +[0.07498665247641, -0.3284986633211], +[0.08052996706246, -0.3285130086341], +[0.0860708632988, -0.3285283947237], +[0.09160917191865, -0.3285448250045], +[0.09714472314971, -0.3285623031464], +[0.1026773466787, -0.32858083308], +[0.1082068716152, -0.3286004190026], +[0.1137331264552, -0.328621065385], +[0.1192559390435, -0.3286427769778], +[0.1247751365361, -0.3286655588193], +[0.1302905453609, -0.328689416243], +[0.1358019911785, -0.3287143548863], +[0.141309298842, -0.3287403806988], +[0.146812292355, -0.3287674999525], +[0.15231079483, -0.3287957192514], +[0.1578046284447, -0.3288250455422], +[0.1632936143975, -0.3288554861256], +[0.1687775728626, -0.3288870486684], +[0.1742563229425, -0.3289197412158], +[0.1797296826202, -0.3289535722053], +[0.1851974687098, -0.3289885504804], +[0.1906594968057, -0.329024685306], +[0.1961155812298, -0.3290619863838], +[0.201565534978, -0.3291004638697], +[0.2070091696636, -0.3291401283909], +[0.2124462954604, -0.3291809910649], +[0.2178767210428, -0.3292230635197], +[0.2233002535243, -0.3292663579143], +[0.2287166983934, -0.3293108869609], +[0.2341258594482, -0.3293566639487], +[0.2395275387269, -0.3294037027687], +[0.2449215364378, -0.3294520179398], +[0.2503076508847, -0.3295016246368], +[0.2556856783904, -0.32955253872], +[0.2610554132172, -0.3296047767662], +[0.2664166474836, -0.3296583561024], +[0.271769171078, -0.3297132948403], +[0.2771127715687, -0.329769611914], +[0.2824472341099, -0.3298273271199], +[0.2877723413436, -0.3298864611583], +[0.2930878732971, -0.3299470356782], +[0.2983936072767, -0.3300090733255], +[0.3036893177546, -0.3300725977928], +[0.3089747762531, -0.3301376338739], +[0.3142497512209, -0.3302042075214], +[0.3195140079051, -0.3302723459076], +[0.3247673082161, -0.3303420774901], +[0.3300094105864, -0.330413432082], +[0.3352400698218, -0.3304864409264], +[0.3404590369451, -0.3305611367762], +[0.3456660590321, -0.3306375539802], +[0.3508608790383, -0.3307157285748], +[0.3560432356173, -0.3307956983823], +[0.3612128629285, -0.3308775031168], +[0.3663694904349, -0.3309611844985], +[0.3715128426893, -0.3310467863753], +[0.3766426391085, -0.3311343548555], +[0.3817585937352, -0.33122393845], +[0.3868604149852, -0.331315588226], +[0.3919478053805, -0.3314093579731], +[0.3970204612664, -0.3315053043838], +[0.4020780725117, -0.3316034872485], +[0.4071203221904, -0.3317039696674], +[0.4121468862437, -0.3318068182808], +[0.4171574331218, -0.3319121035206], +[0.4221516234017, -0.3320198998831], +[0.4271291093819, -0.3321302862283], +[0.4320895346503, -0.3322433461064], +[0.4370325336234, -0.3323591681164], +[0.4419577310564, -0.3324778462987], +[0.446864741519, -0.3325994805675], +[0.4517531688372, -0.3327241771871], +[0.4566226054966, -0.3328520492974], +[0.4614726320046, -0.3329832174951], +[0.466302816209, -0.333117810478], +[0.4711127125697, -0.3332559657605], +[0.4759018613781, -0.33339783047], +[0.480669787924, -0.3335435622352], +[0.4854160016032, -0.3336933301801], +[0.4901399949635, -0.3338473160382], +[0.4948412426839, -0.3340057154042], +[0.4995192004856, -0.3341687391459], +[0.5041733039691, -0.3343366149993], +[0.5088029673758, -0.3345095893762], +[0.5134075822714, -0.33468792942], +[0.5179865161524, -0.3348719253493], +[0.5225391109757, -0.3350618931392], +[0.5270646816157, -0.3352581775994], +[0.5315625142615, -0.3354611559185], +[0.5360318647665, -0.3356712417612], +[0.5404719569788, -0.3358888900202], +[0.544881981088, -0.3361146023491], +[0.549261092047, -0.3363489336274], +[0.5536084081482, -0.3365924995437], +[0.5579230098767, -0.3368459855244], +[0.5622039392064, -0.3371101572825], +[0.5664501995805, -0.3373858733261], +[0.5706607569186, -0.3376740998365], +[0.574834542133, -0.3379759284114], +[0.5789704558693, -0.3382925972559], +[0.5830673763552, -0.3386255165391], +[0.5871241718429, -0.3389762986633], +[0.5911397194967, -0.3393467942903], +[0.5951129333521, -0.3397391349276], +[0.5990428051181, -0.3401557825403], +[0.602928462648, -0.3405995860622], +[0.6067692524512, -0.341073843219], +[0.6105648538399, -0.3415823634534], +[0.6143154327506, -0.3421295230658], +[0.6180218408429, -0.3427202967053], +[0.6216852499875, -0.3433599659536], +[-0.6198681365521, -0.3402127027929], +[-0.6161322405549, -0.3395588426031], +[-0.6123572260224, -0.338950621123], +[-0.6085420997632, -0.3383835772587], +[-0.6046859864912, -0.3378534633301], +[-0.6007885727534, -0.3373564801784], +[-0.5968499625205, -0.3368892645574], +[-0.5928705607898, -0.3364488570419], +[-0.5888509832321, -0.3360326613577], +[-0.5847919878711, -0.3356384017706], +[-0.5806944243929, -0.3352640822344], +[-0.5765591970708, -0.3349079491055], +[-0.5723872380252, -0.3345684580779], +[-0.5681794881426, -0.3342442454033], +[-0.5639368836485, -0.3339341031111], +[-0.5596603468594, -0.3336369577976], +[-0.5553507799613, -0.3333518525409], +[-0.5510090609793, -0.3330779315035], +[-0.5466360413375, -0.3328144268184], +[-0.5422325445579, -0.3325606474091], +[-0.5377993657702, -0.3323159694409], +[-0.5333372717938, -0.3320798281476], +[-0.5288470016128, -0.3318517108162], +[-0.5243292671216, -0.3316311507493], +[-0.5197847540436, -0.3314177220537], +[-0.5152141229561, -0.3312110351277], +[-0.5106180103739, -0.3310107327431], +[-0.5059970298565, -0.3308164866311], +[-0.5013517731139, -0.3306279945005], +[-0.4966828110926, -0.3304449774239], +[-0.4919906950316, -0.3302671775411], +[-0.4872759574808, -0.3300943560351], +[-0.4825391132755, -0.3299262913429], +[-0.4777806604662, -0.3297627775707], +[-0.4730010812013, -0.3296036230856], +[-0.4682008425623, -0.329448649261], +[-0.4633803973568, -0.3292976893567], +[-0.4585401848619, -0.329150587517], +[-0.4536806315298, -0.3290071978711], +[-0.4488021516492, -0.3288673837251], +[-0.44390514797, -0.3287310168339], +[-0.4389900122904, -0.3285979767434], +[-0.4340571260093, -0.3284681501959], +[-0.429106860647, -0.3283414305916], +[-0.4241395783344, -0.3282177174981], +[-0.4191556322736, -0.3280969162061], +[-0.4141553671725, -0.3279789373232], +[-0.4091391196529, -0.3278636964033], +[-0.4041072186363, -0.3277511136083], +[-0.3990599857062, -0.3276411133976], +[-0.3939977354517, -0.3275336242439], +[-0.3889207757897, -0.3274285783717], +[-0.3838294082709, -0.3273259115169], +[-0.3787239283675, -0.3272255627056], +[-0.3736046257464, -0.3271274740497], +[-0.3684717845264, -0.327031590558], +[-0.3633256835224, -0.3269378599623], +[-0.3581665964766, -0.3268462325556], +[-0.3529947922772, -0.3267566610424], +[-0.3478105351661, -0.3266691003996], +[-0.3426140849358, -0.326583507748], +[-0.3374056971162, -0.3264998422313], +[-0.3321856231526, -0.3264180649054], +[-0.3269541105741, -0.3263381386333], +[-0.3217114031545, -0.3262600279887], +[-0.3164577410649, -0.3261836991648], +[-0.3111933610195, -0.3261091198896], +[-0.3059184964143, -0.3260362593469], +[-0.300633377459, -0.3259650881016], +[-0.2953382313039, -0.3258955780307], +[-0.2900332821602, -0.3258277022578], +[-0.2847187514149, -0.3257614350917], +[-0.2793948577414, -0.3256967519696], +[-0.2740618172047, -0.3256336294025], +[-0.2687198433625, -0.325572044925], +[-0.2633691473614, -0.3255119770471], +[-0.2580099380303, -0.3254534052096], +[-0.2526424219688, -0.3253963097418], +[-0.2472668036329, -0.3253406718213], +[-0.2418832854168, -0.3252864734367], +[-0.2364920677321, -0.3252336973523], +[-0.2310933490835, -0.3251823270743], +[-0.2256873261418, -0.3251323468192], +[-0.2202741938144, -0.3250837414843], +[-0.2148541453132, -0.3250364966194], +[-0.2094273722203, -0.3249905984001], +[-0.2039940645506, -0.3249460336026], +[-0.1985544108138, -0.3249027895802], +[-0.1931085980727, -0.3248608542406], +[-0.1876568120009, -0.3248202160243], +[-0.1821992369381, -0.3247808638855], +[-0.1767360559439, -0.3247427872718], +[-0.1712674508494, -0.3247059761073], +[-0.1657936023085, -0.3246704207749], +[-0.1603146898465, -0.3246361121006], +[-0.1548308919082, -0.3246030413381], +[-0.1493423859042, -0.3245712001545], +[-0.1438493482564, -0.3245405806168], +[-0.1383519544418, -0.3245111751789], +[-0.132850379036, -0.3244829766698], +[-0.1273447957552, -0.3244559782819], +[-0.1218353774969, -0.3244301735603], +[-0.1163222963807, -0.3244055563929], +[-0.1108057237871, -0.3243821210006], +[-0.1052858303965, -0.3243598619286], +[-0.09976278622685, -0.3243387740378], +[-0.09423676067087, -0.3243188524971], +[-0.08870792253235, -0.3243000927758], +[-0.08317644006221, -0.324282490637], +[-0.07764248099371, -0.3242660421314], +[-0.07210621257726, -0.3242507435906], +[-0.06656780161472, -0.3242365916226], +[-0.06102741449322, -0.3242235831061], +[-0.05548521721862, -0.324211715186], +[-0.04994137544857, -0.3242009852694], +[-0.0443960545252, -0.3241913910215], +[-0.03884941950756, -0.3241829303624], +[-0.03330163520374, -0.3241756014639], +[-0.02775286620277, -0.3241694027471], +[-0.02220327690628, -0.3241643328796], +[-0.01665303156005, -0.324160390774], +[-0.01110229428532, -0.3241575755861], +[-0.005551229110033, -0.324155886714], +[1.40125441286e-15, -0.3241553237967], +[0.005551229110035, -0.324155886714], +[0.01110229428532, -0.3241575755861], +[0.01665303156005, -0.3241603907739], +[0.02220327690628, -0.3241643328796], +[0.02775286620277, -0.3241694027471], +[0.03330163520374, -0.3241756014639], +[0.03884941950757, -0.3241829303624], +[0.04439605452521, -0.3241913910215], +[0.04994137544858, -0.3242009852694], +[0.05548521721863, -0.324211715186], +[0.06102741449322, -0.3242235831061], +[0.06656780161472, -0.3242365916226], +[0.07210621257727, -0.3242507435906], +[0.07764248099371, -0.3242660421314], +[0.08317644006221, -0.324282490637], +[0.08870792253235, -0.3243000927758], +[0.09423676067087, -0.3243188524971], +[0.09976278622686, -0.3243387740378], +[0.1052858303965, -0.3243598619286], +[0.1108057237871, -0.3243821210006], +[0.1163222963807, -0.3244055563929], +[0.1218353774969, -0.3244301735603], +[0.1273447957552, -0.3244559782819], +[0.132850379036, -0.3244829766698], +[0.1383519544418, -0.3245111751789], +[0.1438493482564, -0.3245405806168], +[0.1493423859042, -0.3245712001545], +[0.1548308919082, -0.3246030413381], +[0.1603146898465, -0.3246361121006], +[0.1657936023085, -0.3246704207749], +[0.1712674508494, -0.3247059761073], +[0.1767360559439, -0.3247427872718], +[0.1821992369382, -0.3247808638855], +[0.1876568120009, -0.3248202160243], +[0.1931085980727, -0.3248608542406], +[0.1985544108138, -0.3249027895802], +[0.2039940645506, -0.3249460336026], +[0.2094273722203, -0.3249905984001], +[0.2148541453132, -0.3250364966194], +[0.2202741938144, -0.3250837414843], +[0.2256873261418, -0.3251323468192], +[0.2310933490835, -0.3251823270743], +[0.2364920677321, -0.3252336973523], +[0.2418832854168, -0.3252864734367], +[0.2472668036329, -0.3253406718213], +[0.2526424219688, -0.3253963097418], +[0.2580099380303, -0.3254534052096], +[0.2633691473614, -0.3255119770471], +[0.2687198433625, -0.325572044925], +[0.2740618172047, -0.3256336294025], +[0.2793948577414, -0.3256967519696], +[0.2847187514149, -0.3257614350917], +[0.2900332821602, -0.3258277022578], +[0.2953382313039, -0.3258955780307], +[0.300633377459, -0.3259650881016], +[0.3059184964143, -0.3260362593469], +[0.3111933610196, -0.3261091198896], +[0.3164577410649, -0.3261836991648], +[0.3217114031545, -0.3262600279887], +[0.3269541105741, -0.3263381386333], +[0.3321856231526, -0.3264180649054], +[0.3374056971162, -0.3264998422313], +[0.3426140849358, -0.326583507748], +[0.3478105351661, -0.3266691003996], +[0.3529947922772, -0.3267566610424], +[0.3581665964766, -0.3268462325556], +[0.3633256835224, -0.3269378599623], +[0.3684717845264, -0.327031590558], +[0.3736046257464, -0.3271274740497], +[0.3787239283675, -0.3272255627056], +[0.3838294082709, -0.3273259115169], +[0.3889207757897, -0.3274285783717], +[0.3939977354517, -0.3275336242439], +[0.3990599857062, -0.3276411133976], +[0.4041072186363, -0.3277511136083], +[0.4091391196529, -0.3278636964033], +[0.4141553671725, -0.3279789373232], +[0.4191556322736, -0.3280969162061], +[0.4241395783343, -0.3282177174981], +[0.429106860647, -0.3283414305916], +[0.4340571260093, -0.3284681501959], +[0.4389900122904, -0.3285979767434], +[0.44390514797, -0.3287310168339], +[0.4488021516492, -0.3288673837251], +[0.4536806315298, -0.3290071978711], +[0.4585401848619, -0.329150587517], +[0.4633803973568, -0.3292976893567], +[0.4682008425624, -0.329448649261], +[0.4730010812011, -0.3296036230856], +[0.4777806604663, -0.3297627775707], +[0.4825391132755, -0.3299262913429], +[0.4872759574808, -0.3300943560351], +[0.4919906950316, -0.3302671775411], +[0.4966828110926, -0.3304449774239], +[0.5013517731139, -0.3306279945005], +[0.5059970298565, -0.3308164866311], +[0.5106180103738, -0.3310107327431], +[0.515214122956, -0.3312110351277], +[0.5197847540435, -0.3314177220537], +[0.5243292671208, -0.3316311507494], +[0.5288470016122, -0.3318517108163], +[0.5333372717936, -0.3320798281476], +[0.5377993657704, -0.3323159694409], +[0.5422325445578, -0.3325606474091], +[0.5466360413375, -0.3328144268184], +[0.5510090609793, -0.3330779315035], +[0.5553507799612, -0.3333518525409], +[0.5596603468595, -0.3336369577975], +[0.5639368836496, -0.3339341031107], +[0.5681794881463, -0.3342442454021], +[0.5723872380252, -0.3345684580779], +[0.5765591970606, -0.3349079491097], +[0.5806944243846, -0.3352640822381], +[0.5847919878683, -0.335638401772], +[0.5888509832317, -0.3360326613579], +[0.59287056079, -0.3364488570419], +[0.5968499625204, -0.3368892645575], +[0.6007885727536, -0.3373564801783], +[0.6046859864934, -0.3378534633279], +[0.6085420997682, -0.3383835772527], +[0.6123572260224, -0.338950621123], +[0.6161322405549, -0.3395588426031], +[0.6198681363984, -0.3402127031163], +[-0.6180143027224, -0.337001904668], +[-0.6142118314602, -0.3363354015843], +[-0.6103734370165, -0.335711763306], +[-0.6064983239477, -0.3351271451152], +[-0.6025856286185, -0.3345778764909], +[-0.5986349517161, -0.3340606304744], +[-0.5946462516035, -0.3335724208432], +[-0.5906197552996, -0.3331105838548], +[-0.5865558868389, -0.3326727519309], +[-0.5824552110734, -0.3322568241962], +[-0.5783183903957, -0.3318609368876], +[-0.5741461518671, -0.3314834353347], +[-0.5699392625923, -0.3311228483196], +[-0.5656985113347, -0.330777865196], +[-0.5614246950726, -0.3304473156791], +[-0.5571186091829, -0.3301301522181], +[-0.5527810404186, -0.3298254346796], +[-0.5484127619677, -0.3295323170901], +[-0.5440145300738, -0.3292500361785], +[-0.5395870818193, -0.3289779014758], +[-0.5351311337726, -0.3287152867563], +[-0.5306473812711, -0.3284616226303], +[-0.5261364981716, -0.3282163901222], +[-0.5215991369394, -0.3279791150917], +[-0.5170359289818, -0.3277493633769], +[-0.5124474851433, -0.3275267365581], +[-0.5078343963253, -0.3273108682497], +[-0.5031972341765, -0.3271014208504], +[-0.4985365518279, -0.3268980826853], +[-0.4938528846508, -0.3267005654874], +[-0.4891467510211, -0.3265086021728], +[-0.4844186530764, -0.3263219448695], +[-0.4796690774599, -0.3261403631674], +[-0.4748984960435, -0.3259636425613], +[-0.4701073666256, -0.3257915830613], +[-0.4652961336028, -0.3256239979507], +[-0.4604652286132, -0.3254607126732], +[-0.4556150711501, -0.3253015638327], +[-0.4507460691463, -0.3251463982945], +[-0.4458586195304, -0.3249950723739], +[-0.4409531087539, -0.3248474511033], +[-0.4360299132922, -0.3247034075689], +[-0.4310894001183, -0.3245628223092], +[-0.4261319271522, -0.3244255827679], +[-0.4211578436854, -0.324291582797], +[-0.4161674907839, -0.3241607222028], +[-0.4111612016685, -0.3240329063316], +[-0.4061393020751, -0.3239080456912], +[-0.4011021105959, -0.3237860556034], +[-0.3960499390021, -0.323666855886], +[-0.3909830925496, -0.3235503705598], +[-0.3859018702682, -0.3234365275798], +[-0.3808065652361, -0.3233252585869], +[-0.3756974648397, -0.3232164986795], +[-0.3705748510201, -0.3231101862017], +[-0.3654390005067, -0.3230062625482], +[-0.3602901850393, -0.3229046719832], +[-0.3551286715785, -0.3228053614725], +[-0.3499547225058, -0.322708280528], +[-0.3447685958138, -0.322613381063], +[-0.339570545287, -0.3225206172575], +[-0.3343608206739, -0.322429945433], +[-0.3291396678507, -0.3223413239358], +[-0.3239073289774, -0.322254713028], +[-0.3186640426461, -0.322170074786], +[-0.3134100440235, -0.3220873730052], +[-0.3081455649853, -0.3220065731113], +[-0.3028708342461, -0.3219276420772], +[-0.2975860774822, -0.3218505483448], +[-0.29229151745, -0.321775261752], +[-0.2869873740983, -0.3217017534645], +[-0.2816738646767, -0.3216299959108], +[-0.2763512038387, -0.3215599627222], +[-0.2710196037408, -0.3214916286758], +[-0.2656792741376, -0.3214249696409], +[-0.2603304224728, -0.321359962529], +[-0.2549732539668, -0.3212965852458], +[-0.2496079717006, -0.3212348166472], +[-0.2442347766971, -0.3211746364966], +[-0.238853867998, -0.3211160254255], +[-0.2334654427396, -0.3210589648958], +[-0.2280696962243, -0.3210034371647], +[-0.2226668219902, -0.320949425251], +[-0.2172570118783, -0.3208969129036], +[-0.2118404560973, -0.3208458845719], +[-0.2064173432859, -0.3207963253772], +[-0.2009878605733, -0.3207482210862], +[-0.195552193638, -0.3207015580861], +[-0.190110526764, -0.3206563233602], +[-0.1846630428961, -0.3206125044658], +[-0.1792099236929, -0.3205700895129], +[-0.1737513495782, -0.3205290671436], +[-0.1682874997918, -0.3204894265133], +[-0.1628185524374, -0.3204511572728], +[-0.1573446845308, -0.3204142495511], +[-0.1518660720456, -0.320378693939], +[-0.1463828899581, -0.3203444814746], +[-0.1408953122915, -0.3203116036279], +[-0.1354035121583, -0.3202800522882], +[-0.1299076618024, -0.3202498197506], +[-0.1244079326397, -0.3202208987043], +[-0.1189044952982, -0.3201932822209], +[-0.1133975196569, -0.3201669637439], +[-0.1078871748845, -0.3201419370787], +[-0.1023736294765, -0.3201181963828], +[-0.09685705129254, -0.3200957361573], +[-0.09133760759245, -0.3200745512383], +[-0.08581546507192, -0.3200546367895], +[-0.08029078989757, -0.3200359882944], +[-0.07476374774156, -0.3200186015502], +[-0.06923450381563, -0.3200024726614], +[-0.06370322290477, -0.3199875980336], +[-0.05817006940037, -0.3199739743689], +[-0.05263520733312, -0.3199615986608], +[-0.04709880040548, -0.3199504681895], +[-0.04156101202384, -0.3199405805185], +[-0.03602200533046, -0.3199319334907], +[-0.03048194323509, -0.3199245252254], +[-0.02494098844643, -0.3199183541156], +[-0.01939930350336, -0.3199134188255], +[-0.01385705080604, -0.3199097182889], +[-0.008314392646851, -0.3199072517075], +[-0.002771491241284, -0.3199060185495], +[0.002771491241286, -0.3199060185495], +[0.008314392646853, -0.3199072517075], +[0.01385705080604, -0.3199097182889], +[0.01939930350337, -0.3199134188255], +[0.02494098844644, -0.3199183541156], +[0.03048194323509, -0.3199245252254], +[0.03602200533046, -0.3199319334907], +[0.04156101202384, -0.3199405805185], +[0.04709880040548, -0.3199504681895], +[0.05263520733312, -0.3199615986608], +[0.05817006940037, -0.3199739743689], +[0.06370322290477, -0.3199875980336], +[0.06923450381564, -0.3200024726614], +[0.07476374774156, -0.3200186015502], +[0.08029078989757, -0.3200359882944], +[0.08581546507192, -0.3200546367895], +[0.09133760759245, -0.3200745512383], +[0.09685705129254, -0.3200957361573], +[0.1023736294765, -0.3201181963828], +[0.1078871748845, -0.3201419370787], +[0.1133975196569, -0.3201669637439], +[0.1189044952982, -0.3201932822209], +[0.1244079326397, -0.3202208987043], +[0.1299076618024, -0.3202498197506], +[0.1354035121583, -0.3202800522882], +[0.1408953122915, -0.3203116036279], +[0.1463828899581, -0.3203444814746], +[0.1518660720456, -0.320378693939], +[0.1573446845308, -0.3204142495511], +[0.1628185524374, -0.3204511572728], +[0.1682874997918, -0.3204894265133], +[0.1737513495782, -0.3205290671436], +[0.1792099236929, -0.3205700895129], +[0.1846630428961, -0.3206125044658], +[0.190110526764, -0.3206563233602], +[0.195552193638, -0.3207015580861], +[0.2009878605733, -0.3207482210862], +[0.2064173432859, -0.3207963253772], +[0.2118404560973, -0.3208458845719], +[0.2172570118783, -0.3208969129036], +[0.2226668219902, -0.320949425251], +[0.2280696962243, -0.3210034371647], +[0.2334654427396, -0.3210589648958], +[0.238853867998, -0.3211160254255], +[0.2442347766971, -0.3211746364966], +[0.2496079717006, -0.3212348166472], +[0.2549732539668, -0.3212965852458], +[0.2603304224728, -0.321359962529], +[0.2656792741376, -0.3214249696409], +[0.2710196037408, -0.3214916286758], +[0.2763512038387, -0.3215599627222], +[0.281673864677, -0.3216299959109], +[0.2869873740983, -0.3217017534645], +[0.29229151745, -0.321775261752], +[0.2975860774822, -0.3218505483448], +[0.3028708342461, -0.3219276420772], +[0.3081455649853, -0.3220065731113], +[0.3134100440234, -0.3220873730052], +[0.3186640426461, -0.322170074786], +[0.3239073289774, -0.322254713028], +[0.3291396678507, -0.3223413239358], +[0.3343608206739, -0.322429945433], +[0.339570545287, -0.3225206172575], +[0.3447685958138, -0.322613381063], +[0.3499547225058, -0.322708280528], +[0.3551286715785, -0.3228053614725], +[0.3602901850393, -0.3229046719832], +[0.3654390005067, -0.3230062625482], +[0.37057485102, -0.3231101862017], +[0.3756974648397, -0.3232164986795], +[0.3808065652361, -0.3233252585869], +[0.3859018702682, -0.3234365275798], +[0.3909830925496, -0.3235503705598], +[0.3960499390022, -0.323666855886], +[0.4011021105959, -0.3237860556034], +[0.4061393020751, -0.3239080456912], +[0.4111612016685, -0.3240329063316], +[0.4161674907839, -0.3241607222028], +[0.4211578436854, -0.324291582797], +[0.4261319271522, -0.3244255827679], +[0.4310894001184, -0.3245628223092], +[0.4360299132922, -0.3247034075689], +[0.4409531087539, -0.3248474511033], +[0.4458586195304, -0.3249950723739], +[0.4507460691463, -0.3251463982945], +[0.4556150711501, -0.3253015638327], +[0.4604652286132, -0.3254607126732], +[0.4652961336028, -0.3256239979507], +[0.4701073666255, -0.3257915830613], +[0.4748984960434, -0.3259636425613], +[0.4796690774599, -0.3261403631674], +[0.4844186530763, -0.3263219448695], +[0.489146751021, -0.3265086021728], +[0.4938528846508, -0.3267005654874], +[0.4985365518279, -0.3268980826853], +[0.5031972341765, -0.3271014208504], +[0.5078343963253, -0.3273108682497], +[0.5124474851433, -0.3275267365581], +[0.5170359289819, -0.3277493633769], +[0.5215991369397, -0.3279791150916], +[0.5261364981702, -0.3282163901225], +[0.5306473812703, -0.3284616226304], +[0.5351311337727, -0.3287152867563], +[0.5395870818194, -0.3289779014758], +[0.5440145300738, -0.3292500361785], +[0.5484127619677, -0.3295323170901], +[0.5527810404186, -0.3298254346796], +[0.557118609183, -0.3301301522181], +[0.5614246950729, -0.330447315679], +[0.5656985113357, -0.3307778651956], +[0.5699392625947, -0.3311228483186], +[0.5741461518671, -0.3314834353347], +[0.5783183903915, -0.3318609368897], +[0.5824552110715, -0.3322568241973], +[0.5865558868383, -0.3326727519313], +[0.5906197552995, -0.3331105838548], +[0.5946462516036, -0.3335724208432], +[0.5986349517161, -0.3340606304744], +[0.6025856286185, -0.3345778764909], +[0.6064983239469, -0.3351271451162], +[0.6103734370098, -0.3357117633162], +[0.6142118314602, -0.3363354015843], +[0.6180143025728, -0.3370019049876], +[-0.6161265518082, -0.3337323088836], +[-0.6122624449599, -0.3330544333804], +[-0.6083651636108, -0.3324170594866], +[-0.6044340452397, -0.3318167855619], +[-0.6004682561795, -0.3312504065333], +[-0.5964673500333, -0.3307149854776], +[-0.5924311875002, -0.3302078558594], +[-0.5883598675393, -0.3297266116231], +[-0.5842536702957, -0.3292690902326], +[-0.5801130109415, -0.3288333522579], +[-0.5759384030131, -0.3284176598929], +[-0.5717304297136, -0.3280204558586], +[-0.5674897216542, -0.3276403435577], +[-0.5632169397707, -0.3272760688724], +[-0.5589127623405, -0.3269265037551], +[-0.5545778751524, -0.3265906316306], +[-0.5502129641729, -0.3262675344872], +[-0.54581871012, -0.3259563815294], +[-0.541395784512, -0.3256564192296], +[-0.5369448468466, -0.3253669626231], +[-0.5324665426454, -0.3250873876935], +[-0.5279615021585, -0.3248171247117], +[-0.5234303395701, -0.3245556524042], +[-0.5188736525824, -0.3243024928418], +[-0.5142920222841, -0.3240572069534], +[-0.5096860132301, -0.3238193905806], +[-0.5050561736757, -0.3235886710027], +[-0.5004030359241, -0.3233647038692], +[-0.4957271167519, -0.3231471704864], +[-0.491028917889, -0.3229357754132], +[-0.4863089265323, -0.3227302443243], +[-0.4815676158788, -0.3225303221097], +[-0.4768054456674, -0.3223357711784], +[-0.4720228627216, -0.3221463699428], +[-0.4672203014834, -0.3219619114606], +[-0.4623981845394, -0.3217822022164], +[-0.4575569231314, -0.3216070610259], +[-0.452696917651, -0.3214363180481], +[-0.4478185581174, -0.3212698138941], +[-0.442922224635, -0.3211073988206], +[-0.4380082878344, -0.3209489319995], +[-0.4330771092922, -0.3207942808544], +[-0.4281290419332, -0.320643320458], +[-0.4231644304138, -0.3204959329826], +[-0.4181836114874, -0.3203520071994], +[-0.4131869143522, -0.3202114380203], +[-0.4081746609823, -0.3200741260793], +[-0.4031471664428, -0.3199399773483], +[-0.3981047391892, -0.319808902785], +[-0.3930476813524, -0.3196808180089], +[-0.3879762890096, -0.3195556430028], +[-0.3828908524417, -0.3194333018389], +[-0.3777916563785, -0.3193137224244], +[-0.3726789802312, -0.3191968362681], +[-0.3675530983144, -0.3190825782628], +[-0.362414280057, -0.3189708864857], +[-0.3572627902026, -0.3188617020114], +[-0.3520988890008, -0.3187549687397], +[-0.3469228323893, -0.318650633235], +[-0.3417348721672, -0.318548644577], +[-0.3365352561608, -0.3184489542219], +[-0.3313242283805, -0.3183515158725], +[-0.3261020291719, -0.3182562853575], +[-0.3208688953594, -0.3181632205188], +[-0.3156250603832, -0.318072281106], +[-0.3103707544302, -0.3179834286775], +[-0.3051062045596, -0.3178966265086], +[-0.2998316348229, -0.3178118395044], +[-0.2945472663782, -0.3177290341194], +[-0.2892533176003, -0.3176481782807], +[-0.2839500041857, -0.317569241317], +[-0.2786375392541, -0.3174921938914], +[-0.2733161334443, -0.3174170079381], +[-0.2679859950079, -0.3173436566031], +[-0.2626473298979, -0.3172721141885], +[-0.257300341855, -0.3172023560996], +[-0.2519452324893, -0.3171343587954], +[-0.2465822013604, -0.3170680997418], +[-0.2412114460532, -0.3170035573677], +[-0.2358331622516, -0.3169407110229], +[-0.2304475438096, -0.3168795409393], +[-0.2250547828194, -0.3168200281937], +[-0.2196550696776, -0.3167621546725], +[-0.2142485931491, -0.3167059030386], +[-0.2088355404285, -0.3166512567004], +[-0.2034160972, -0.316598199782], +[-0.197990447695, -0.3165467170951], +[-0.1925587747478, -0.3164967941128], +[-0.1871212598504, -0.316448416944], +[-0.1816780832045, -0.3164015723106], +[-0.1762294237728, -0.3163562475241], +[-0.1707754593289, -0.3163124304653], +[-0.1653163665048, -0.3162701095634], +[-0.1598523208386, -0.3162292737779], +[-0.1543834968197, -0.3161899125799], +[-0.1489100679335, -0.3161520159357], +[-0.143432206705, -0.3161155742903], +[-0.1379500847408, -0.3160805785529], +[-0.1324638727709, -0.316047020082], +[-0.126973740689, -0.3160148906723], +[-0.1214798575923, -0.315984182542], +[-0.1159823918198, -0.3159548883207], +[-0.1104815109911, -0.315927001038], +[-0.104977382043, -0.3159005141136], +[-0.09947017126664, -0.3158754213466], +[-0.09396004434301, -0.3158517169065], +[-0.08844716637872, -0.3158293953248], +[-0.08293170194063, -0.3158084514866], +[-0.07741381509018, -0.3157888806229], +[-0.07189366941726, -0.3157706783041], +[-0.06637142807354, -0.315753840433], +[-0.06084725380545, -0.3157383632393], +[-0.05532130898676, -0.3157242432738], +[-0.04979375565082, -0.3157114774035], +[-0.0442647555225, -0.3157000628072], +[-0.0387344700498, -0.3156899969714], +[-0.03320306043526, -0.3156812776865], +[-0.02767068766714, -0.3156739030439], +[-0.02213751255036, -0.3156678714334], +[-0.0166036957373, -0.3156631815404], +[-0.01106939775853, -0.3156598323444], +[-0.005534779053283, -0.3156578231177], +[1.082787500846e-15, -0.3156571534239], +[0.005534779053285, -0.3156578231177], +[0.01106939775853, -0.3156598323444], +[0.01660369573731, -0.3156631815404], +[0.02213751255036, -0.3156678714334], +[0.02767068766714, -0.3156739030439], +[0.03320306043526, -0.3156812776865], +[0.0387344700498, -0.3156899969714], +[0.0442647555225, -0.3157000628072], +[0.04979375565082, -0.3157114774035], +[0.05532130898676, -0.3157242432738], +[0.06084725380545, -0.3157383632393], +[0.06637142807355, -0.315753840433], +[0.07189366941727, -0.3157706783041], +[0.07741381509018, -0.3157888806229], +[0.08293170194063, -0.3158084514866], +[0.08844716637872, -0.3158293953248], +[0.09396004434302, -0.3158517169065], +[0.09947017126664, -0.3158754213466], +[0.104977382043, -0.3159005141136], +[0.1104815109911, -0.315927001038], +[0.1159823918198, -0.3159548883207], +[0.1214798575923, -0.315984182542], +[0.126973740689, -0.3160148906723], +[0.1324638727709, -0.316047020082], +[0.1379500847408, -0.3160805785529], +[0.143432206705, -0.3161155742903], +[0.1489100679335, -0.3161520159357], +[0.1543834968197, -0.3161899125799], +[0.1598523208386, -0.3162292737779], +[0.1653163665048, -0.3162701095634], +[0.1707754593289, -0.3163124304653], +[0.1762294237728, -0.3163562475241], +[0.1816780832045, -0.3164015723106], +[0.1871212598504, -0.316448416944], +[0.1925587747478, -0.3164967941128], +[0.197990447695, -0.3165467170951], +[0.2034160972, -0.316598199782], +[0.2088355404285, -0.3166512567004], +[0.2142485931491, -0.3167059030386], +[0.2196550696776, -0.3167621546725], +[0.2250547828194, -0.3168200281937], +[0.2304475438096, -0.3168795409393], +[0.2358331622516, -0.3169407110229], +[0.2412114460532, -0.3170035573677], +[0.2465822013604, -0.3170680997418], +[0.2519452324893, -0.3171343587954], +[0.257300341855, -0.3172023560996], +[0.2626473298979, -0.3172721141885], +[0.2679859950079, -0.3173436566031], +[0.2733161334443, -0.3174170079381], +[0.2786375392541, -0.3174921938914], +[0.2839500041857, -0.317569241317], +[0.2892533176003, -0.3176481782807], +[0.2945472663782, -0.3177290341194], +[0.2998316348229, -0.3178118395044], +[0.3051062045596, -0.3178966265086], +[0.3103707544302, -0.3179834286775], +[0.3156250603832, -0.318072281106], +[0.3208688953594, -0.3181632205188], +[0.3261020291719, -0.3182562853575], +[0.3313242283805, -0.3183515158725], +[0.3365352561608, -0.3184489542219], +[0.3417348721672, -0.318548644577], +[0.3469228323893, -0.318650633235], +[0.3520988890008, -0.3187549687397], +[0.3572627902026, -0.3188617020114], +[0.362414280057, -0.3189708864857], +[0.3675530983144, -0.3190825782628], +[0.3726789802312, -0.3191968362681], +[0.3777916563785, -0.3193137224244], +[0.3828908524417, -0.3194333018389], +[0.3879762890096, -0.3195556430028], +[0.3930476813524, -0.3196808180089], +[0.3981047391892, -0.319808902785], +[0.4031471664428, -0.3199399773483], +[0.4081746609823, -0.3200741260793], +[0.4131869143522, -0.3202114380203], +[0.4181836114874, -0.3203520071994], +[0.4231644304138, -0.3204959329826], +[0.4281290419332, -0.320643320458], +[0.4330771092922, -0.3207942808544], +[0.4380082878344, -0.3209489319995], +[0.442922224635, -0.3211073988206], +[0.4478185581174, -0.3212698138941], +[0.452696917651, -0.3214363180481], +[0.4575569231314, -0.3216070610259], +[0.4623981845394, -0.3217822022164], +[0.4672203014834, -0.3219619114606], +[0.4720228627216, -0.3221463699428], +[0.4768054456674, -0.3223357711784], +[0.4815676158786, -0.3225303221097], +[0.4863089265322, -0.3227302443243], +[0.4910289178891, -0.3229357754132], +[0.4957271167519, -0.3231471704864], +[0.5004030359241, -0.3233647038692], +[0.5050561736757, -0.3235886710027], +[0.5096860132301, -0.3238193905806], +[0.5142920222842, -0.3240572069534], +[0.5188736525825, -0.3243024928418], +[0.5234303395705, -0.3245556524041], +[0.52796150216, -0.3248171247114], +[0.5324665426462, -0.3250873876934], +[0.5369448468469, -0.325366962623], +[0.5413957845121, -0.3256564192295], +[0.54581871012, -0.3259563815294], +[0.5502129641729, -0.3262675344872], +[0.5545778751524, -0.3265906316306], +[0.5589127623404, -0.3269265037551], +[0.5632169397705, -0.3272760688725], +[0.5674897216509, -0.3276403435592], +[0.5717304297111, -0.3280204558598], +[0.5759384030131, -0.3284176598929], +[0.580113010943, -0.328833352257], +[0.5842536702966, -0.329269090232], +[0.5883598675397, -0.3297266116228], +[0.5924311875003, -0.3302078558593], +[0.5964673500333, -0.3307149854777], +[0.6004682561795, -0.3312504065333], +[0.604434045239, -0.3318167855629], +[0.608365163607, -0.332417059493], +[0.6122624449599, -0.3330544333804], +[0.6161271990569, -0.3337323593608], +[-0.6142074348378, -0.3304072655932], +[-0.6102856977273, -0.3297197482532], +[-0.6063334382371, -0.3290700559342], +[-0.6023498221896, -0.3284557458778], +[-0.5983340548396, -0.3278739935814], +[-0.5942856673355, -0.3273221873688], +[-0.5902044554697, -0.3267979330909], +[-0.5860904258511, -0.326299049289], +[-0.5819437501477, -0.3258235563813], +[-0.5777647271173, -0.3253696625164], +[-0.5735537516576, -0.3249357479419], +[-0.5693112899363, -0.3245203491009], +[-0.5650378595798, -0.3241221432463], +[-0.5607340140786, -0.3237399339719], +[-0.556400330566, -0.3233726379128], +[-0.5520374003214, -0.3230192726786], +[-0.5476458214439, -0.3226789460123], +[-0.5432261932418, -0.3223508461157], +[-0.5387791119784, -0.3220342330531], +[-0.5343051676816, -0.3217284311357], +[-0.52980494179, -0.3214328221852], +[-0.5252790054504, -0.3211468395808], +[-0.5207279183262, -0.3208699629965], +[-0.5161522278028, -0.3206017137496], +[-0.5115524684973, -0.3203416506837], +[-0.5069291620059, -0.3200893665224], +[-0.5022828168325, -0.3198444846343], +[-0.497613928455, -0.3196066561596], +[-0.4929229794949, -0.3193755574531], +[-0.4882104399636, -0.3191508878054], +[-0.483476767565, -0.3189323674079], +[-0.4787224080352, -0.3187197355331], +[-0.4739477955132, -0.3185127489034], +[-0.469153352922, -0.3183111802275], +[-0.4643394923633, -0.3181148168833], +[-0.459506615512, -0.3179234597321], +[-0.4546551140108, -0.3177369220478], +[-0.4497853698577, -0.3175550285489], +[-0.4448977557875, -0.3173776145223], +[-0.4399926356423, -0.3172045250276], +[-0.4350703647316, -0.3170356141744], +[-0.4301312901808, -0.3168707444651], +[-0.4251757512665, -0.3167097861947], +[-0.4202040797399, -0.3165526169039], +[-0.4152166001371, -0.3163991208778], +[-0.4102136300768, -0.3162491886884], +[-0.4051954805449, -0.3161027167735], +[-0.4001624561681, -0.3159596070508], +[-0.3951148554743, -0.3158197665633], +[-0.3900529711421, -0.3156831071519], +[-0.384977090239, -0.3155495451542], +[-0.3798874944494, -0.3154190011266], +[-0.3747844602912, -0.3152913995866], +[-0.3696682593241, -0.3151666687752], +[-0.364539158347, -0.3150447404366], +[-0.3593974195877, -0.3149255496135], +[-0.3542433008833, -0.3148090344571], +[-0.349077055853, -0.3146951360514], +[-0.3438989340627, -0.3145837982483], +[-0.3387091811828, -0.3144749675153], +[-0.3335080391384, -0.3143685927928], +[-0.3282957462537, -0.3142646253611], +[-0.3230725373896, -0.3141630187165], +[-0.3178386440751, -0.3140637284549], +[-0.3125942946341, -0.3139667121637], +[-0.3073397143056, -0.3138719293198], +[-0.3020751253596, -0.3137793411947], +[-0.2968007472083, -0.3136889107649], +[-0.2915167965118, -0.3136006026285], +[-0.2862234872809, -0.3135143829261], +[-0.2809210309745, -0.3134302192674], +[-0.2756096365941, -0.3133480806612], +[-0.2702895107737, -0.3132679374506], +[-0.2649608578671, -0.3131897612509], +[-0.2596238800313, -0.3131135248918], +[-0.2542787773071, -0.3130392023631], +[-0.2489257476965, -0.312966768763], +[-0.2435649872373, -0.3128962002491], +[-0.2381966900755, -0.3128274739934], +[-0.2328210485341, -0.3127605681382], +[-0.2274382531809, -0.312695461756], +[-0.2220484928928, -0.3126321348101], +[-0.2166519549185, -0.3125705681187], +[-0.2112488249395, -0.3125107433202], +[-0.205839287128, -0.3124526428405], +[-0.2004235242046, -0.3123962498623], +[-0.1950017174925, -0.3123415482959], +[-0.1895740469716, -0.3122885227514], +[-0.1841406913299, -0.3122371585129], +[-0.1787018280141, -0.3121874415135], +[-0.1732576332782, -0.3121393583122], +[-0.1678082822318, -0.3120928960714], +[-0.1623539488857, -0.3120480425366], +[-0.1568948061973, -0.3120047860159], +[-0.151431026115, -0.3119631153617], +[-0.1459627796205, -0.3119230199532], +[-0.1404902367712, -0.3118844896792], +[-0.1350135667412, -0.3118475149226], +[-0.129532937861, -0.3118120865456], +[-0.1240485176571, -0.3117781958757], +[-0.1185604728902, -0.311745834692], +[-0.1130689695929, -0.3117149952133], +[-0.1075741731069, -0.3116856700863], +[-0.1020762481188, -0.3116578523743], +[-0.09657535869619, -0.3116315355471], +[-0.0910716683226, -0.3116067134714], +[-0.0855653399319, -0.3115833804017], +[-0.08005653594239, -0.311561530972], +[-0.07454541829034, -0.3115411601877], +[-0.06903214846307, -0.311522263419], +[-0.0635168875316, -0.3115048363933], +[-0.05799979618296, -0.31148887519], +[-0.05248103475219, -0.3114743762343], +[-0.0469607632539, -0.3114613362921], +[-0.04143914141369, -0.3114497524659], +[-0.03591632869922, -0.3114396221901], +[-0.0303924843511, -0.3114309432277], +[-0.02486776741352, -0.3114237136672], +[-0.01934233676483, -0.3114179319196], +[-0.01381635114782, -0.3114135967165], +[-0.00828996919999, -0.3114107071081], +[-0.002763349483711, -0.3114092624619], +[0.002763349483714, -0.3114092624619], +[0.008289969199993, -0.3114107071081], +[0.01381635114782, -0.3114135967165], +[0.01934233676484, -0.3114179319196], +[0.02486776741353, -0.3114237136672], +[0.0303924843511, -0.3114309432277], +[0.03591632869922, -0.3114396221901], +[0.04143914141369, -0.3114497524659], +[0.0469607632539, -0.3114613362921], +[0.05248103475219, -0.3114743762343], +[0.05799979618297, -0.31148887519], +[0.0635168875316, -0.3115048363933], +[0.06903214846307, -0.311522263419], +[0.07454541829035, -0.3115411601877], +[0.08005653594239, -0.311561530972], +[0.0855653399319, -0.3115833804017], +[0.09107166832261, -0.3116067134714], +[0.09657535869619, -0.3116315355471], +[0.1020762481188, -0.3116578523743], +[0.1075741731069, -0.3116856700863], +[0.1130689695929, -0.3117149952133], +[0.1185604728902, -0.311745834692], +[0.1240485176571, -0.3117781958757], +[0.129532937861, -0.3118120865456], +[0.1350135667412, -0.3118475149226], +[0.1404902367712, -0.3118844896792], +[0.1459627796205, -0.3119230199532], +[0.151431026115, -0.3119631153617], +[0.1568948061973, -0.3120047860159], +[0.1623539488857, -0.3120480425366], +[0.1678082822318, -0.3120928960714], +[0.1732576332782, -0.3121393583122], +[0.1787018280141, -0.3121874415135], +[0.1841406913299, -0.3122371585129], +[0.1895740469716, -0.3122885227514], +[0.1950017174925, -0.3123415482959], +[0.2004235242046, -0.3123962498623], +[0.205839287128, -0.3124526428405], +[0.2112488249395, -0.3125107433202], +[0.2166519549185, -0.3125705681187], +[0.2220484928928, -0.3126321348101], +[0.2274382531809, -0.312695461756], +[0.2328210485341, -0.3127605681382], +[0.2381966900755, -0.3128274739934], +[0.2435649872373, -0.3128962002491], +[0.2489257476965, -0.312966768763], +[0.2542787773071, -0.3130392023631], +[0.2596238800313, -0.3131135248918], +[0.2649608578671, -0.3131897612509], +[0.2702895107737, -0.3132679374506], +[0.2756096365941, -0.3133480806612], +[0.2809210309746, -0.3134302192674], +[0.2862234872809, -0.3135143829261], +[0.2915167965118, -0.3136006026285], +[0.2968007472083, -0.3136889107649], +[0.3020751253597, -0.3137793411947], +[0.3073397143056, -0.3138719293198], +[0.3125942946341, -0.3139667121637], +[0.3178386440751, -0.3140637284549], +[0.3230725373896, -0.3141630187165], +[0.3282957462537, -0.3142646253611], +[0.3335080391384, -0.3143685927928], +[0.3387091811828, -0.3144749675153], +[0.3438989340627, -0.3145837982483], +[0.349077055853, -0.3146951360514], +[0.3542433008833, -0.3148090344571], +[0.3593974195877, -0.3149255496135], +[0.364539158347, -0.3150447404366], +[0.3696682593241, -0.3151666687752], +[0.3747844602912, -0.3152913995866], +[0.3798874944494, -0.3154190011266], +[0.384977090239, -0.3155495451542], +[0.3900529711421, -0.3156831071519], +[0.3951148554743, -0.3158197665633], +[0.4001624561681, -0.3159596070508], +[0.4051954805449, -0.3161027167735], +[0.4102136300768, -0.3162491886884], +[0.4152166001371, -0.3163991208778], +[0.4202040797399, -0.3165526169039], +[0.4251757512665, -0.3167097861947], +[0.4301312901808, -0.3168707444651], +[0.4350703647316, -0.3170356141744], +[0.4399926356422, -0.3172045250276], +[0.4448977557875, -0.3173776145223], +[0.4497853698577, -0.3175550285489], +[0.4546551140108, -0.3177369220478], +[0.459506615512, -0.3179234597321], +[0.4643394923633, -0.3181148168833], +[0.469153352922, -0.3183111802275], +[0.4739477955132, -0.3185127489034], +[0.4787224080353, -0.3187197355331], +[0.4834767675648, -0.3189323674079], +[0.4882104399638, -0.3191508878054], +[0.492922979495, -0.3193755574531], +[0.497613928455, -0.3196066561596], +[0.5022828168325, -0.3198444846343], +[0.5069291620059, -0.3200893665224], +[0.5115524684973, -0.3203416506837], +[0.5161522278028, -0.3206017137496], +[0.520727918326, -0.3208699629965], +[0.5252790054499, -0.3211468395809], +[0.5298049417896, -0.3214328221854], +[0.5343051676822, -0.3217284311356], +[0.5387791119786, -0.3220342330531], +[0.5432261932418, -0.3223508461158], +[0.5476458214439, -0.3226789460123], +[0.5520374003215, -0.3230192726786], +[0.5564003305659, -0.3233726379128], +[0.5607340140785, -0.3237399339719], +[0.565037859579, -0.3241221432467], +[0.5693112899356, -0.3245203491012], +[0.5735537516588, -0.3249357479412], +[0.5777647271177, -0.3253696625161], +[0.5819437501514, -0.3258235563786], +[0.5860904258526, -0.3262990492878], +[0.5902044554699, -0.3267979330907], +[0.5942856673353, -0.327322187369], +[0.5983340548397, -0.3278739935813], +[0.60234982219, -0.3284557458771], +[0.606333438237, -0.3290700559345], +[0.6102856977273, -0.3297197482532], +[0.6142074348178, -0.3304072656498], +[-0.6122583492032, -0.327031361614], +[-0.6082830271793, -0.3263346438571], +[-0.6042792251916, -0.3256738465029], +[-0.6002462268502, -0.3250468869015], +[-0.5961832800077, -0.3244512555949], +[-0.5920899090844, -0.3238846146003], +[-0.5879658675968, -0.3233448031324], +[-0.5838110956018, -0.3228298358474], +[-0.5796256827524, -0.3223378960983], +[-0.5754098369673, -0.3218673261538], +[-0.5711638583079, -0.3214166158162], +[-0.5668881175266, -0.3209843904053], +[-0.5625830385927, -0.3205693988085], +[-0.5582490846043, -0.3201705019878], +[-0.5538867465034, -0.3197866621945], +[-0.5494965340932, -0.3194169330114], +[-0.5450789689296, -0.3190604502659], +[-0.5406345787334, -0.3187164238031], +[-0.5361638930237, -0.3183841300826], +[-0.5316674397337, -0.3180629055415], +[-0.5271457426113, -0.3177521406604], +[-0.5225993192469, -0.3174512746672], +[-0.5180286796039, -0.3171597908124], +[-0.5134343249432, -0.3168772121569], +[-0.5088167470646, -0.316603097816], +[-0.5041764277964, -0.3163370396077], +[-0.4995138386819, -0.316078659059], +[-0.4948294408193, -0.3158276047305], +[-0.4901236848219, -0.3155835498214], +[-0.4853970108718, -0.3153461900234], +[-0.4806498488443, -0.3151152415945], +[-0.4758826184857, -0.3148904396278], +[-0.4710957296338, -0.3146715364934], +[-0.4662895824645, -0.3144583004337], +[-0.4614645677615, -0.3142505142947], +[-0.456621067198, -0.3140479743795], +[-0.451759453627, -0.3138504894088], +[-0.4468800913759, -0.3136578795787], +[-0.4419833365402, -0.3134699757046], +[-0.4370695372769, -0.3132866184417], +[-0.4321390340917, -0.3131076575753], +[-0.4271921601223, -0.3129329513725], +[-0.4222292414132, -0.3127623659902], +[-0.4172505971848, -0.3125957749328], +[-0.4122565400924, -0.3124330585558], +[-0.407247376478, -0.3122741036094], +[-0.4022234066129, -0.3121188028197], +[-0.3971849249315, -0.3119670545031], +[-0.3921322202563, -0.3118187622112], +[-0.3870655760141, -0.3116738344029], +[-0.3819852704444, -0.3115321841416], +[-0.3768915767982, -0.3113937288158], +[-0.3717847635301, -0.3112583898796], +[-0.3666650944815, -0.3111260926127], +[-0.3615328290564, -0.3109967658977], +[-0.3563882223908, -0.3108703420132], +[-0.3512315255137, -0.3107467564414], +[-0.3460629855027, -0.3106259476892], +[-0.3408828456319, -0.3105078571212], +[-0.3356913455149, -0.3103924288045], +[-0.3304887212411, -0.3102796093637], +[-0.3252752055064, -0.310169347845], +[-0.3200510277388, -0.3100615955899], +[-0.3148164142191, -0.3099563061164], +[-0.3095715881962, -0.3098534350083], +[-0.3043167699981, -0.3097529398108], +[-0.2990521771382, -0.3096547799336], +[-0.2937780244181, -0.3095589165585], +[-0.2884945240253, -0.3094653125544], +[-0.2832018856284, -0.3093739323958], +[-0.2779003164674, -0.3092847420872], +[-0.2725900214415, -0.3091977090917], +[-0.2672712031934, -0.3091128022635], +[-0.26194406219, -0.3090299917847], +[-0.2566087968011, -0.3089492491055], +[-0.2512656033746, -0.3088705468882], +[-0.2459146763088, -0.3087938589534], +[-0.2405562081233, -0.3087191602306], +[-0.2351903895263, -0.3086464267106], +[-0.2298174094801, -0.3085756354005], +[-0.2244374552648, -0.3085067642821], +[-0.2190507125391, -0.3084397922713], +[-0.2136573654001, -0.3083746991809], +[-0.2082575964406, -0.3083114656846], +[-0.2028515868045, -0.3082500732832], +[-0.1974395162415, -0.3081905042731], +[-0.1920215631588, -0.3081327417156], +[-0.1865979046726, -0.3080767694086], +[-0.1811687166577, -0.3080225718593], +[-0.1757341737949, -0.3079701342589], +[-0.1702944496188, -0.3079194424582], +[-0.1648497165629, -0.3078704829447], +[-0.1594001460043, -0.3078232428209], +[-0.1539459083071, -0.3077777097839], +[-0.1484871728646, -0.3077338721061], +[-0.143024108141, -0.3076917186164], +[-0.1375568817117, -0.3076512386835], +[-0.1320856603028, -0.3076124221993], +[-0.12661060983, -0.3075752595633], +[-0.1211318954365, -0.3075397416685], +[-0.1156496815305, -0.3075058598872], +[-0.1101641318212, -0.3074736060587], +[-0.1046754093552, -0.3074429724765], +[-0.09918367655161, -0.3074139518778], +[-0.09368909523675, -0.3073865374319], +[-0.08819182667827, -0.3073607227311], +[-0.08269203161887, -0.307336501781], +[-0.07718987030952, -0.3073138689916], +[-0.07168550254215, -0.30729281917], +[-0.06617908768206, -0.3072733475124], +[-0.06067078469988, -0.3072554495972], +[-0.05516075220321, -0.3072391213795], +[-0.04964914846794, -0.3072243591842], +[-0.04413613146931, -0.3072111597021], +[-0.03862185891268, -0.3071995199842], +[-0.03310648826409, -0.3071894374382], +[-0.0275901767806, -0.3071809098246], +[-0.0220730815405, -0.3071739352538], +[-0.01655535947329, -0.3071685121833], +[-0.01103716738964, -0.3071646394154], +[-0.005518662011119, -0.307162316096], +[1.210174265652e-15, -0.3071615417131], +[0.005518662011121, -0.307162316096], +[0.01103716738964, -0.3071646394154], +[0.01655535947329, -0.3071685121833], +[0.0220730815405, -0.3071739352538], +[0.0275901767806, -0.3071809098246], +[0.03310648826409, -0.3071894374382], +[0.03862185891269, -0.3071995199842], +[0.04413613146932, -0.3072111597021], +[0.04964914846795, -0.3072243591842], +[0.05516075220321, -0.3072391213795], +[0.06067078469989, -0.3072554495972], +[0.06617908768207, -0.3072733475124], +[0.07168550254215, -0.30729281917], +[0.07718987030952, -0.3073138689916], +[0.08269203161888, -0.307336501781], +[0.08819182667827, -0.3073607227311], +[0.09368909523675, -0.3073865374319], +[0.09918367655162, -0.3074139518778], +[0.1046754093552, -0.3074429724765], +[0.1101641318212, -0.3074736060587], +[0.1156496815305, -0.3075058598872], +[0.1211318954365, -0.3075397416685], +[0.12661060983, -0.3075752595633], +[0.1320856603028, -0.3076124221993], +[0.1375568817117, -0.3076512386835], +[0.143024108141, -0.3076917186164], +[0.1484871728646, -0.3077338721061], +[0.1539459083071, -0.3077777097839], +[0.1594001460043, -0.3078232428209], +[0.1648497165629, -0.3078704829447], +[0.1702944496188, -0.3079194424582], +[0.1757341737949, -0.3079701342589], +[0.1811687166577, -0.3080225718593], +[0.1865979046726, -0.3080767694086], +[0.1920215631588, -0.3081327417156], +[0.1974395162415, -0.3081905042731], +[0.2028515868045, -0.3082500732832], +[0.2082575964406, -0.3083114656846], +[0.2136573654001, -0.3083746991809], +[0.2190507125391, -0.3084397922713], +[0.2244374552648, -0.3085067642821], +[0.2298174094801, -0.3085756354005], +[0.2351903895263, -0.3086464267106], +[0.2405562081233, -0.3087191602306], +[0.2459146763088, -0.3087938589534], +[0.2512656033746, -0.3088705468882], +[0.2566087968011, -0.3089492491055], +[0.26194406219, -0.3090299917847], +[0.2672712031934, -0.3091128022635], +[0.2725900214415, -0.3091977090917], +[0.2779003164674, -0.3092847420872], +[0.2832018856284, -0.3093739323958], +[0.2884945240253, -0.3094653125544], +[0.2937780244181, -0.3095589165585], +[0.2990521771382, -0.3096547799336], +[0.3043167699981, -0.3097529398108], +[0.3095715881962, -0.3098534350083], +[0.3148164142191, -0.3099563061164], +[0.3200510277388, -0.3100615955899], +[0.3252752055064, -0.310169347845], +[0.3304887212411, -0.3102796093637], +[0.335691345515, -0.3103924288045], +[0.3408828456319, -0.3105078571212], +[0.3460629855027, -0.3106259476892], +[0.3512315255137, -0.3107467564414], +[0.3563882223908, -0.3108703420132], +[0.3615328290564, -0.3109967658977], +[0.3666650944815, -0.3111260926127], +[0.3717847635301, -0.3112583898796], +[0.3768915767982, -0.3113937288158], +[0.3819852704443, -0.3115321841416], +[0.3870655760141, -0.3116738344029], +[0.3921322202563, -0.3118187622112], +[0.3971849249315, -0.3119670545031], +[0.4022234066129, -0.3121188028197], +[0.407247376478, -0.3122741036094], +[0.4122565400924, -0.3124330585558], +[0.4172505971848, -0.3125957749328], +[0.4222292414132, -0.3127623659902], +[0.4271921601222, -0.3129329513725], +[0.4321390340917, -0.3131076575753], +[0.4370695372769, -0.3132866184417], +[0.4419833365402, -0.3134699757046], +[0.4468800913759, -0.3136578795787], +[0.451759453627, -0.3138504894088], +[0.456621067198, -0.3140479743795], +[0.4614645677615, -0.3142505142947], +[0.4662895824645, -0.3144583004337], +[0.4710957296338, -0.3146715364934], +[0.4758826184858, -0.3148904396278], +[0.4806498488442, -0.3151152415945], +[0.485397010872, -0.3153461900234], +[0.4901236848219, -0.3155835498214], +[0.4948294408193, -0.3158276047305], +[0.4995138386819, -0.316078659059], +[0.5041764277964, -0.3163370396077], +[0.5088167470646, -0.316603097816], +[0.5134343249432, -0.3168772121569], +[0.5180286796038, -0.3171597908124], +[0.5225993192468, -0.3174512746672], +[0.5271457426112, -0.3177521406604], +[0.531667439734, -0.3180629055414], +[0.5361638930238, -0.3183841300826], +[0.5406345787332, -0.3187164238032], +[0.5450789689295, -0.319060450266], +[0.5494965340933, -0.3194169330114], +[0.5538867465036, -0.3197866621944], +[0.5582490846043, -0.3201705019878], +[0.5625830385925, -0.3205693988086], +[0.5668881175265, -0.3209843904054], +[0.5711638583086, -0.3214166158157], +[0.5754098369699, -0.3218673261519], +[0.5796256827599, -0.3223378960924], +[0.5838110956049, -0.3228298358446], +[0.5879658675971, -0.3233448031321], +[0.5920899090836, -0.3238846146012], +[0.5961832800072, -0.3244512555956], +[0.6002462268509, -0.3250468869004], +[0.6042792251902, -0.3256738465054], +[0.6082830271784, -0.3263346438589], +[0.612258349184, -0.3270313616688], +[-0.6102813392907, -0.3236070989961], +[-0.6062557199699, -0.3229020058473], +[-0.6022034224388, -0.322231156395], +[-0.5981238290777, -0.3215927490742], +[-0.594016231021, -0.3209845381763], +[-0.58988015599, -0.3204044179968], +[-0.5857153310019, -0.3198504288272], +[-0.5815216483729, -0.3193207570508], +[-0.5772991356537, -0.3188137311206], +[-0.5730479296836, -0.3183278148199], +[-0.5687682545237, -0.3178615989725], +[-0.5644604029676, -0.3174137923644], +[-0.5601247212063, -0.3169832124435], +[-0.5557615962123, -0.3165687761782], +[-0.5513714454334, -0.3161694913105], +[-0.5469547084232, -0.3157844481424], +[-0.5425118400798, -0.3154128119267], +[-0.5380433052141, -0.3150538158845], +[-0.5335495742059, -0.3147067548424], +[-0.529031119552, -0.3143709794655], +[-0.5244884131374, -0.3140458910465], +[-0.5199219241009, -0.3137309368098], +[-0.5153321171764, -0.3134256056866], +[-0.5107194514226, -0.3131294245171], +[-0.5060843792652, -0.3128419546376], +[-0.5014273457918, -0.3125627888144], +[-0.4967487882503, -0.3122915484868], +[-0.4920491357096, -0.3120278812879], +[-0.487328808851, -0.311771458813], +[-0.4825882198634, -0.3115219746086], +[-0.47782777242, -0.311279142359], +[-0.4730478617212, -0.3110426942482], +[-0.4682488745872, -0.3108123794797], +[-0.4634311895893, -0.3105879629352], +[-0.4585951772118, -0.3103692239602], +[-0.4537412000354, -0.3101559552608], +[-0.4488696129374, -0.3099479619008], +[-0.4439807633022, -0.3097450603897], +[-0.4390749912399, -0.3095470778508], +[-0.434152629808, -0.3093538512622], +[-0.4292140052357, -0.3091652267633], +[-0.4242594371471, -0.3089810590199], +[-0.4192892387823, -0.3088012106424], +[-0.4143037172156, -0.3086255516527], +[-0.4093031735696, -0.3084539589935], +[-0.404287903224, -0.3082863160775], +[-0.3992581960192, -0.3081225123724], +[-0.3942143364543, -0.3079624430177], +[-0.3891566038791, -0.3078060084715], +[-0.3840852726796, -0.3076531141835], +[-0.3790006124578, -0.3075036702935], +[-0.3739028882048, -0.3073575913506], +[-0.3687923604685, -0.3072147960543], +[-0.3636692855142, -0.3070752070134], +[-0.3585339154804, -0.3069387505221], +[-0.3533864985278, -0.3068053563519], +[-0.3482272789836, -0.3066749575576], +[-0.3430564974795, -0.3065474902971], +[-0.3378743910851, -0.3064228936628], +[-0.3326811934357, -0.306301109524], +[-0.3274771348558, -0.3061820823807], +[-0.3222624424772, -0.3060657592258], +[-0.3170373403531, -0.3059520894165], +[-0.3118020495678, -0.3058410245543], +[-0.3065567883419, -0.3057325183717], +[-0.3013017721341, -0.3056265266269], +[-0.2960372137386, -0.305523007004], +[-0.2907633233795, -0.30542191902], +[-0.285480308801, -0.3053232239369], +[-0.2801883753552, -0.3052268846795], +[-0.2748877260858, -0.3051328657576], +[-0.2695785618095, -0.3050411331931], +[-0.2642610811942, -0.3049516544511], +[-0.2589354808346, -0.3048643983749], +[-0.253601955325, -0.3047793351252], +[-0.24826069733, -0.3046964361219], +[-0.2429118976522, -0.3046156739901], +[-0.2375557452986, -0.3045370225083], +[-0.2321924275438, -0.30446045656], +[-0.2268221299918, -0.3043859520879], +[-0.2214450366359, -0.3043134860501], +[-0.2160613299164, -0.3042430363795], +[-0.2106711907768, -0.3041745819449], +[-0.2052747987182, -0.3041081025139], +[-0.1998723318522, -0.3040435787187], +[-0.1944639669522, -0.303980992023], +[-0.1890498795035, -0.3039203246909], +[-0.1836302437516, -0.3038615597574], +[-0.1782052327496, -0.3038046810006], +[-0.1727750184041, -0.3037496729153], +[-0.1673397715204, -0.3036965206883], +[-0.1618996618458, -0.3036452101744], +[-0.1564548581127, -0.3035957278742], +[-0.1510055280801, -0.3035480609131], +[-0.1455518385743, -0.3035021970213], +[-0.140093955529, -0.3034581245146], +[-0.1346320440242, -0.3034158322773], +[-0.1291662683243, -0.3033753097446], +[-0.1236967919158, -0.3033365468871], +[-0.118223777544, -0.3032995341959], +[-0.112747387249, -0.3032642626684], +[-0.1072677824011, -0.303230723795], +[-0.1017851237358, -0.3031989095468], +[-0.09629957138811, -0.303168812364], +[-0.09081128492614, -0.3031404251447], +[-0.08532042338453, -0.3031137412348], +[-0.07982714529722, -0.3030887544188], +[-0.07433160872983, -0.3030654589106], +[-0.0688339713117, -0.3030438493454], +[-0.06333439026745, -0.3030239207721], +[-0.05783302244835, -0.3030056686466], +[-0.05233002436325, -0.3029890888252], +[-0.04682555220929, -0.3029741775588], +[-0.04131976190234, -0.302960931488], +[-0.03581280910725, -0.302949347638], +[-0.03030484926779, -0.3029394234148], +[-0.02479603763655, -0.3029311566016], +[-0.01928652930459, -0.3029245453556], +[-0.01377647923095, -0.3029195882058], +[-0.008266042272151, -0.3029162840505], +[-0.002755373211517, -0.3029146321561], +[0.002755373211519, -0.3029146321561], +[0.008266042272153, -0.3029162840505], +[0.01377647923095, -0.3029195882058], +[0.01928652930459, -0.3029245453556], +[0.02479603763656, -0.3029311566016], +[0.03030484926779, -0.3029394234148], +[0.03581280910725, -0.302949347638], +[0.04131976190234, -0.302960931488], +[0.04682555220929, -0.3029741775589], +[0.05233002436325, -0.3029890888252], +[0.05783302244835, -0.3030056686466], +[0.06333439026745, -0.3030239207721], +[0.0688339713117, -0.3030438493454], +[0.07433160872983, -0.3030654589106], +[0.07982714529722, -0.3030887544188], +[0.08532042338453, -0.3031137412348], +[0.09081128492614, -0.3031404251447], +[0.09629957138811, -0.303168812364], +[0.1017851237358, -0.3031989095468], +[0.1072677824011, -0.303230723795], +[0.112747387249, -0.3032642626684], +[0.118223777544, -0.3032995341959], +[0.1236967919158, -0.3033365468871], +[0.1291662683243, -0.3033753097446], +[0.1346320440242, -0.3034158322773], +[0.140093955529, -0.3034581245146], +[0.1455518385743, -0.3035021970213], +[0.1510055280801, -0.3035480609131], +[0.1564548581127, -0.3035957278742], +[0.1618996618458, -0.3036452101744], +[0.1673397715204, -0.3036965206883], +[0.1727750184041, -0.3037496729153], +[0.1782052327496, -0.3038046810006], +[0.1836302437516, -0.3038615597574], +[0.1890498795036, -0.3039203246909], +[0.1944639669522, -0.303980992023], +[0.1998723318522, -0.3040435787187], +[0.2052747987182, -0.3041081025139], +[0.2106711907768, -0.3041745819449], +[0.2160613299164, -0.3042430363795], +[0.2214450366359, -0.3043134860501], +[0.2268221299918, -0.3043859520879], +[0.2321924275438, -0.30446045656], +[0.2375557452986, -0.3045370225083], +[0.2429118976522, -0.3046156739901], +[0.24826069733, -0.3046964361219], +[0.253601955325, -0.3047793351252], +[0.2589354808346, -0.3048643983749], +[0.2642610811942, -0.3049516544511], +[0.2695785618095, -0.3050411331931], +[0.2748877260858, -0.3051328657576], +[0.2801883753552, -0.3052268846795], +[0.285480308801, -0.3053232239369], +[0.2907633233795, -0.30542191902], +[0.2960372137386, -0.305523007004], +[0.3013017721341, -0.3056265266269], +[0.3065567883419, -0.3057325183717], +[0.3118020495678, -0.3058410245543], +[0.3170373403531, -0.3059520894165], +[0.3222624424772, -0.3060657592258], +[0.3274771348558, -0.3061820823807], +[0.3326811934357, -0.306301109524], +[0.3378743910851, -0.3064228936628], +[0.3430564974795, -0.3065474902971], +[0.3482272789836, -0.3066749575576], +[0.3533864985278, -0.3068053563519], +[0.3585339154804, -0.3069387505221], +[0.3636692855142, -0.3070752070134], +[0.3687923604685, -0.3072147960543], +[0.3739028882048, -0.3073575913506], +[0.3790006124578, -0.3075036702935], +[0.3840852726796, -0.3076531141835], +[0.3891566038791, -0.3078060084715], +[0.3942143364543, -0.3079624430177], +[0.3992581960192, -0.3081225123724], +[0.404287903224, -0.3082863160775], +[0.4093031735696, -0.3084539589935], +[0.4143037172156, -0.3086255516527], +[0.4192892387823, -0.3088012106424], +[0.4242594371471, -0.3089810590199], +[0.4292140052357, -0.3091652267633], +[0.434152629808, -0.3093538512622], +[0.4390749912399, -0.3095470778508], +[0.4439807633023, -0.3097450603897], +[0.4488696129374, -0.3099479619008], +[0.4537412000354, -0.3101559552608], +[0.4585951772118, -0.3103692239602], +[0.4634311895893, -0.3105879629352], +[0.4682488745872, -0.3108123794797], +[0.4730478617212, -0.3110426942482], +[0.4778277724199, -0.311279142359], +[0.4825882198633, -0.3115219746086], +[0.487328808851, -0.311771458813], +[0.4920491357096, -0.3120278812879], +[0.4967487882502, -0.3122915484868], +[0.5014273457918, -0.3125627888144], +[0.5060843792652, -0.3128419546376], +[0.5107194514226, -0.3131294245171], +[0.5153321171764, -0.3134256056866], +[0.5199219241009, -0.3137309368098], +[0.5244884131374, -0.3140458910465], +[0.5290311195522, -0.3143709794654], +[0.5335495742066, -0.3147067548422], +[0.5380433052135, -0.3150538158847], +[0.5425118400793, -0.315412811927], +[0.5469547084227, -0.3157844481426], +[0.5513714454333, -0.3161694913106], +[0.5557615962123, -0.3165687761782], +[0.5601247212063, -0.3169832124435], +[0.5644604029676, -0.3174137923644], +[0.5687682545239, -0.3178615989724], +[0.5730479296844, -0.3183278148192], +[0.5772991356555, -0.3188137311192], +[0.5815216483729, -0.3193207570508], +[0.5857153310023, -0.3198504288268], +[0.5898801559881, -0.3204044179991], +[0.5940162310188, -0.3209845381793], +[0.5981238290784, -0.3215927490731], +[0.6022034224387, -0.3222311563952], +[0.6062557199697, -0.3229020058479], +[0.6102813392721, -0.3236070990499], +[-0.6082779135742, -0.3201371101297], +[-0.6042049349687, -0.3194243835576], +[-0.6001068654897, -0.3187444064081], +[-0.5959831872434, -0.3180956044776], +[-0.5918332336875, -0.3174759550791], +[-0.5876565421802, -0.3168835511992], +[-0.5834528243023, -0.3163166073886], +[-0.5792219384403, -0.3157734609269], +[-0.5749638651528, -0.3152525696051], +[-0.5706786855655, -0.3147525071471], +[-0.5663665626797, -0.3142719571875], +[-0.5620277254561, -0.3138097063931], +[-0.5576624553825, -0.3133646372216], +[-0.553271075235, -0.3129357206406], +[-0.5488539397381, -0.3125220090286], +[-0.5444114278478, -0.3121226293991], +[-0.5399439364079, -0.3117367770318], +[-0.5354518749569, -0.3113637095513], +[-0.5309356615022, -0.3110027414672], +[-0.526395719085, -0.310653239172], +[-0.5218324730145, -0.310314616376], +[-0.5172463486447, -0.3099863299547], +[-0.5126377696034, -0.3096678761827], +[-0.50800715639, -0.3093587873195], +[-0.5033549252777, -0.3090586285204], +[-0.4986814874652, -0.3087669950411], +[-0.4939872484314, -0.3084835097091], +[-0.4892726074568, -0.3082078206356], +[-0.484537957281, -0.3079395991444], +[-0.4797836838697, -0.3076785378963], +[-0.4750101662711, -0.3074243491889], +[-0.4702177765448, -0.3071767634139], +[-0.4654068797486, -0.3069355276565], +[-0.4605778339715, -0.3067004044224], +[-0.4557309904034, -0.3064711704789], +[-0.4508666934335, -0.3062476157994], +[-0.4459852807719, -0.3060295426006], +[-0.4410870835871, -0.3058167644635], +[-0.4361724266574, -0.3056091055291], +[-0.4312416285306, -0.3054063997634], +[-0.4262950016907, -0.3052084902821], +[-0.4213328527282, -0.305015228733], +[-0.4163554825121, -0.3048264747267], +[-0.4113631863634, -0.3046420953145], +[-0.4063562542268, -0.3044619645066], +[-0.4013349708416, -0.3042859628291], +[-0.3962996159091, -0.3041139769136], +[-0.3912504642582, -0.3039458991198], +[-0.3861877860062, -0.3037816271851], +[-0.3811118467167, -0.3036210639009], +[-0.3760229075526, -0.303464116812], +[-0.3709212254257, -0.3033106979385], +[-0.3658070531412, -0.303160723517], +[-0.3606806395378, -0.3030141137597], +[-0.3555422296237, -0.3028707926312], +[-0.3503920647081, -0.3027306876397], +[-0.3452303825284, -0.3025937296427], +[-0.3400574173727, -0.3024598526662], +[-0.3348734001983, -0.3023289937348], +[-0.3296785587467, -0.3022010927137], +[-0.3244731176538, -0.302076092161], +[-0.3192572985564, -0.301953937189], +[-0.3140313201956, -0.3018345753343], +[-0.3087953985156, -0.3017179564362], +[-0.3035497467601, -0.3016040325227], +[-0.2982945755644, -0.3014927577032], +[-0.2930300930446, -0.3013840880682], +[-0.2877565048845, -0.301277981594], +[-0.2824740144181, -0.3011743980545], +[-0.2771828227101, -0.3010732989367], +[-0.2718831286341, -0.3009746473623], +[-0.266575128947, -0.3008784080135], +[-0.2612590183619, -0.3007845470623], +[-0.2559349896185, -0.3006930321049], +[-0.2506032335503, -0.3006038320995], +[-0.2452639391512, -0.3005169173071], +[-0.2399172936383, -0.3004322592357], +[-0.2345634825142, -0.3003498305887], +[-0.2292026896265, -0.3002696052142], +[-0.2238350972256, -0.3001915580587], +[-0.2184608860212, -0.3001156651228], +[-0.2130802352368, -0.3000419034188], +[-0.2076933226625, -0.2999702509313], +[-0.2023003247068, -0.2999006865795], +[-0.1969014164466, -0.2998331901819], +[-0.1914967716758, -0.2997677424222], +[-0.1860865629531, -0.2997043248178], +[-0.1806709616478, -0.2996429196896], +[-0.175250137985, -0.2995835101331], +[-0.16982426109, -0.299526079992], +[-0.1643934990305, -0.299470613832], +[-0.1589580188589, -0.2994170969169], +[-0.1535179866531, -0.2993655151858], +[-0.1480735675569, -0.2993158552313], +[-0.1426249258185, -0.2992681042789], +[-0.1371722248297, -0.299222250168], +[-0.1317156271628, -0.2991782813334], +[-0.1262552946081, -0.299136186788], +[-0.1207913882094, -0.2990959561068], +[-0.1153240683004, -0.2990575794114], +[-0.1098534945389, -0.2990210473558], +[-0.1043798259417, -0.2989863511124], +[-0.0989032209181, -0.2989534823598], +[-0.09342383730334, -0.2989224332707], +[-0.08794183239148, -0.2988931965005], +[-0.08245736296777, -0.2988657651776], +[-0.07697058534061, -0.2988401328927], +[-0.0714816553732, -0.2988162936908], +[-0.06599072851472, -0.2987942420624], +[-0.0604979598313, -0.2987739729357], +[-0.05500350403661, -0.29875548167], +[-0.04950751552216, -0.2987387640491], +[-0.04401014838741, -0.2987238162753], +[-0.03851155646959, -0.2987106349646], +[-0.03301189337337, -0.2986992171417], +[-0.02751131250026, -0.2986895602363], +[-0.02200996707806, -0.2986816620795], +[-0.01650801018981, -0.2986755209003], +[-0.01100559480306, -0.2986711353241], +[-0.005502873798718, -0.2986685043703], +[-2.050926913367e-14, -0.298667627451], +[0.005502873798721, -0.2986685043703], +[0.01100559480306, -0.2986711353241], +[0.01650801018982, -0.2986755209004], +[0.02200996707806, -0.2986816620795], +[0.02751131250032, -0.2986895602366], +[0.03301189337337, -0.2986992171417], +[0.0385115564696, -0.2987106349646], +[0.04401014838741, -0.2987238162753], +[0.04950751552217, -0.2987387640491], +[0.05500350403661, -0.29875548167], +[0.0604979598313, -0.2987739729357], +[0.06599072851472, -0.2987942420624], +[0.0714816553732, -0.2988162936908], +[0.07697058534062, -0.2988401328927], +[0.08245736296778, -0.2988657651776], +[0.08794183239149, -0.2988931965005], +[0.09342383730334, -0.2989224332707], +[0.0989032209181, -0.2989534823598], +[0.1043798259417, -0.2989863511124], +[0.1098534945389, -0.2990210473558], +[0.1153240683004, -0.2990575794114], +[0.1207913882094, -0.2990959561068], +[0.1262552946081, -0.299136186788], +[0.1317156271628, -0.2991782813334], +[0.1371722248297, -0.299222250168], +[0.1426249258185, -0.2992681042789], +[0.1480735675569, -0.2993158552313], +[0.1535179866531, -0.2993655151858], +[0.1589580188589, -0.2994170969169], +[0.1643934990305, -0.299470613832], +[0.16982426109, -0.299526079992], +[0.175250137985, -0.2995835101331], +[0.1806709616478, -0.2996429196896], +[0.1860865629531, -0.2997043248178], +[0.1914967716759, -0.2997677424222], +[0.1969014164466, -0.2998331901819], +[0.2023003247068, -0.2999006865795], +[0.2076933226625, -0.2999702509313], +[0.2130802352368, -0.3000419034188], +[0.2184608860212, -0.3001156651228], +[0.2238350972256, -0.3001915580587], +[0.2292026896265, -0.3002696052142], +[0.2345634825142, -0.3003498305887], +[0.2399172936383, -0.3004322592357], +[0.2452639391512, -0.3005169173071], +[0.2506032335503, -0.3006038320995], +[0.2559349896185, -0.3006930321049], +[0.2612590183619, -0.3007845470623], +[0.266575128947, -0.3008784080135], +[0.2718831286341, -0.3009746473623], +[0.2771828227101, -0.3010732989367], +[0.2824740144181, -0.3011743980545], +[0.2877565048845, -0.301277981594], +[0.2930300930446, -0.3013840880682], +[0.2982945755644, -0.3014927577032], +[0.3035497467601, -0.3016040325227], +[0.3087953985156, -0.3017179564362], +[0.3140313201956, -0.3018345753343], +[0.3192572985564, -0.301953937189], +[0.3244731176538, -0.302076092161], +[0.3296785587467, -0.3022010927137], +[0.3348734001983, -0.3023289937348], +[0.3400574173727, -0.3024598526662], +[0.3452303825284, -0.3025937296427], +[0.3503920647081, -0.3027306876397], +[0.3555422296237, -0.3028707926312], +[0.3606806395378, -0.3030141137597], +[0.3658070531412, -0.303160723517], +[0.3709212254258, -0.3033106979385], +[0.3760229075526, -0.303464116812], +[0.3811118467167, -0.3036210639009], +[0.3861877860062, -0.3037816271851], +[0.3912504642582, -0.3039458991198], +[0.3962996159091, -0.3041139769136], +[0.4013349708416, -0.3042859628291], +[0.4063562542268, -0.3044619645066], +[0.4113631863634, -0.3046420953145], +[0.4163554825121, -0.3048264747267], +[0.4213328527282, -0.305015228733], +[0.4262950016908, -0.3052084902821], +[0.4312416285306, -0.3054063997634], +[0.4361724266574, -0.3056091055291], +[0.4410870835871, -0.3058167644635], +[0.4459852807719, -0.3060295426006], +[0.4508666934335, -0.3062476157994], +[0.4557309904034, -0.3064711704789], +[0.4605778339715, -0.3067004044224], +[0.4654068797486, -0.3069355276565], +[0.4702177765448, -0.3071767634139], +[0.4750101662711, -0.3074243491889], +[0.4797836838697, -0.3076785378963], +[0.484537957281, -0.3079395991444], +[0.4892726074566, -0.3082078206356], +[0.4939872484312, -0.3084835097092], +[0.4986814874652, -0.3087669950411], +[0.5033549252777, -0.3090586285204], +[0.50800715639, -0.3093587873195], +[0.5126377696034, -0.3096678761827], +[0.5172463486447, -0.3099863299547], +[0.5218324730145, -0.3103146163759], +[0.5263957190851, -0.310653239172], +[0.5309356615025, -0.311002741467], +[0.5354518749576, -0.311363709551], +[0.5399439364076, -0.3117367770319], +[0.5444114278476, -0.3121226293992], +[0.548853939738, -0.3125220090286], +[0.553271075235, -0.3129357206406], +[0.5576624553825, -0.3133646372216], +[0.5620277254561, -0.3138097063931], +[0.5663665626797, -0.3142719571875], +[0.5706786855656, -0.314752507147], +[0.5749638651528, -0.3152525696051], +[0.5792219384396, -0.3157734609276], +[0.5834528243023, -0.3163166073886], +[0.5876565421769, -0.3168835512032], +[0.5918332336868, -0.3174759550801], +[0.5959831872435, -0.3180956044774], +[0.6001068654898, -0.3187444064079], +[0.6042049349686, -0.3194243835577], +[0.6082779135558, -0.3201371101835], +[-0.606249312228, -0.3166237708052], +[-0.6021317219229, -0.3159040480353], +[-0.5979903320568, -0.3152157630991], +[-0.5938248429027, -0.3145574983308], +[-0.5896346284114, -0.313927421333], +[-0.5854192394686, -0.3133237963268], +[-0.5811783800136, -0.3127449897201], +[-0.5769118847412, -0.3121894718537], +[-0.5726196987328, -0.3116558160309], +[-0.5683018594023, -0.3111426954331], +[-0.5639584806117, -0.3106488787717], +[-0.5595897389518, -0.3101732250786], +[-0.5551958619901, -0.3097146780601], +[-0.5507771182886, -0.3092722602907], +[-0.5463338089836, -0.3088450674459], +[-0.5418662607225, -0.3084322627092], +[-0.5373748197662, -0.3080330714411], +[-0.5328598470922, -0.3076467761588], +[-0.5283217143311, -0.3072727118578], +[-0.5237608004265, -0.3069102616756], +[-0.5191774888837, -0.3065588528999], +[-0.5145721655222, -0.3062179533048], +[-0.5099452166458, -0.3058870677993], +[-0.5052970275614, -0.3055657353676], +[-0.5006279813873, -0.3052535262796], +[-0.4959384581027, -0.3049500395504], +[-0.4912288337972, -0.3046549006284], +[-0.4864994800867, -0.3043677592903], +[-0.4817507636646, -0.3040882877262], +[-0.4769830459679, -0.3038161787963], +[-0.4721966829362, -0.3035511444423], +[-0.467392024847, -0.3032929142404], +[-0.4625694162144, -0.303041234082], +[-0.4577291957389, -0.3027958649684], +[-0.4528716962994, -0.302556581911], +[-0.4479972449791, -0.3023231729249], +[-0.4431061631181, -0.3020954381084], +[-0.4381987663887, -0.3018731887991], +[-0.4332753648869, -0.3016562468005], +[-0.4283362632378, -0.3014444436718], +[-0.4233817607115, -0.3012376200749], +[-0.4184121513459, -0.3010356251744], +[-0.4134277240753, -0.300838316084], +[-0.4084287628627, -0.3006455573574], +[-0.4034155468346, -0.3004572205171], +[-0.398388350416, -0.3002731836203], +[-0.3933474434663, -0.3000933308565], +[-0.3882930914138, -0.2999175521755], +[-0.3832255553897, -0.2997457429426], +[-0.3781450923586, -0.2995778036187], +[-0.373051955249, -0.2994136394636], +[-0.3679463930791, -0.2992531602594], +[-0.3628286510808, -0.2990962800544], +[-0.3576989708209, -0.2989429169238], +[-0.3525575903186, -0.298792992747], +[-0.3474047441602, -0.2986464329997], +[-0.3422406636103, -0.2985031665604], +[-0.3370655767204, -0.2983631255289], +[-0.3318797084332, -0.2982262450571], +[-0.3266832806849, -0.2980924631902], +[-0.3214765125036, -0.2979617207188], +[-0.3162596201048, -0.2978339610394], +[-0.3110328169838, -0.2977091300242], +[-0.3057963140058, -0.2975871758985], +[-0.3005503194922, -0.2974680491261], +[-0.2952950393044, -0.2973517023007], +[-0.2900306769259, -0.2972380900452], +[-0.2847574335399, -0.2971271689154], +[-0.2794755081066, -0.2970188973104], +[-0.2741850974362, -0.296913235388], +[-0.2688863962607, -0.2968101449846], +[-0.2635795973031, -0.2967095895399], +[-0.2582648913445, -0.2966115340264], +[-0.2529424672891, -0.2965159448817], +[-0.2476125122273, -0.2964227899457], +[-0.2422752114969, -0.2963320384008], +[-0.2369307487423, -0.2962436607151], +[-0.2315793059723, -0.2961576285896], +[-0.2262210636161, -0.2960739149071], +[-0.2208562005773, -0.2959924936849], +[-0.2154848942871, -0.2959133400295], +[-0.2101073207557, -0.295836430094], +[-0.2047236546221, -0.2957617410372], +[-0.1993340692028, -0.2956892509862], +[-0.1939387365395, -0.295618938999], +[-0.1885378274448, -0.2955507850313], +[-0.1831315115479, -0.2954847699034], +[-0.177719957338, -0.2954208752693], +[-0.1723033322078, -0.2953590835881], +[-0.1668818024946, -0.2952993780961], +[-0.1614555335223, -0.2952417427808], +[-0.1560246896406, -0.295186162356], +[-0.1505894342651, -0.2951326222387], +[-0.1451499299147, -0.2950811085271], +[-0.1397063382504, -0.2950316079793], +[-0.1342588201111, -0.2949841079939], +[-0.1288075355509, -0.2949385965913], +[-0.1233526438739, -0.294895062396], +[-0.1178943036695, -0.2948534946203], +[-0.1124326728468, -0.2948138830483], +[-0.1069679086684, -0.2947762180219], +[-0.1015001677835, -0.2947404904261], +[-0.09602960626116, -0.2947066916768], +[-0.09055637962229, -0.2946748137084], +[-0.08508064287176, -0.2946448489626], +[-0.07960255052991, -0.2946167903777], +[-0.07412225666368, -0.2945906313791], +[-0.06863991491749, -0.2945663658696], +[-0.06315567854373, -0.2945439882219], +[-0.05766970043275, -0.2945234932699], +[-0.05218213314321, -0.2945048763027], +[-0.04669312893148, -0.2944881330575], +[-0.04120283978094, -0.2944732597136], +[-0.03571141743159, -0.2944602528881], +[-0.03021901340889, -0.2944491096306], +[-0.02472577905274, -0.2944398274194], +[-0.01923186554627, -0.2944324041585], +[-0.01373742394447, -0.2944268381743], +[-0.008242605202754, -0.2944231282136], +[-0.00274756020551, -0.2944212734417], +[0.002747560205512, -0.2944212734417], +[0.008242605202756, -0.2944231282136], +[0.01373742394447, -0.2944268381743], +[0.01923186554628, -0.2944324041585], +[0.02472577905275, -0.2944398274194], +[0.03021901340889, -0.2944491096306], +[0.03571141743159, -0.2944602528881], +[0.04120283978095, -0.2944732597136], +[0.04669312893148, -0.2944881330575], +[0.05218213314329, -0.2945048763029], +[0.05766970043275, -0.2945234932699], +[0.06315567854364, -0.2945439882217], +[0.06863991491749, -0.2945663658696], +[0.07412225666368, -0.2945906313791], +[0.07960255052991, -0.2946167903777], +[0.08508064287177, -0.2946448489626], +[0.09055637962229, -0.2946748137084], +[0.09602960626116, -0.2947066916768], +[0.1015001677835, -0.2947404904261], +[0.1069679086684, -0.2947762180219], +[0.1124326728468, -0.2948138830483], +[0.1178943036695, -0.2948534946203], +[0.1233526438739, -0.294895062396], +[0.1288075355509, -0.2949385965913], +[0.1342588201111, -0.2949841079939], +[0.1397063382504, -0.2950316079793], +[0.1451499299147, -0.2950811085271], +[0.1505894342651, -0.2951326222387], +[0.1560246896406, -0.295186162356], +[0.1614555335223, -0.2952417427808], +[0.1668818024946, -0.2952993780961], +[0.1723033322078, -0.2953590835881], +[0.177719957338, -0.2954208752693], +[0.1831315115479, -0.2954847699034], +[0.1885378274448, -0.2955507850313], +[0.1939387365395, -0.295618938999], +[0.1993340692028, -0.2956892509862], +[0.2047236546221, -0.2957617410372], +[0.2101073207557, -0.295836430094], +[0.2154848942871, -0.2959133400295], +[0.2208562005773, -0.2959924936849], +[0.2262210636161, -0.2960739149071], +[0.2315793059723, -0.2961576285896], +[0.2369307487423, -0.2962436607151], +[0.2422752114969, -0.2963320384008], +[0.2476125122273, -0.2964227899457], +[0.2529424672891, -0.2965159448817], +[0.2582648913445, -0.2966115340264], +[0.2635795973031, -0.2967095895399], +[0.2688863962607, -0.2968101449846], +[0.2741850974362, -0.296913235388], +[0.2794755081066, -0.2970188973104], +[0.2847574335399, -0.2971271689154], +[0.2900306769259, -0.2972380900452], +[0.2952950393044, -0.2973517023007], +[0.3005503194922, -0.2974680491261], +[0.3057963140058, -0.2975871758985], +[0.3110328169838, -0.2977091300242], +[0.3162596201048, -0.2978339610394], +[0.3214765125036, -0.2979617207188], +[0.326683280685, -0.2980924631902], +[0.3318797084332, -0.2982262450571], +[0.3370655767204, -0.2983631255289], +[0.3422406636103, -0.2985031665604], +[0.3474047441602, -0.2986464329997], +[0.3525575903186, -0.298792992747], +[0.3576989708209, -0.2989429169238], +[0.3628286510808, -0.2990962800544], +[0.3679463930791, -0.2992531602594], +[0.373051955249, -0.2994136394636], +[0.3781450923586, -0.2995778036187], +[0.3832255553896, -0.2997457429426], +[0.3882930914138, -0.2999175521755], +[0.3933474434663, -0.3000933308565], +[0.398388350416, -0.3002731836203], +[0.4034155468346, -0.3004572205171], +[0.4084287628627, -0.3006455573574], +[0.4134277240753, -0.300838316084], +[0.4184121513459, -0.3010356251744], +[0.4233817607115, -0.3012376200749], +[0.4283362632378, -0.3014444436718], +[0.4332753648869, -0.3016562468006], +[0.4381987663887, -0.3018731887991], +[0.4431061631181, -0.3020954381084], +[0.4479972449791, -0.3023231729249], +[0.4528716962994, -0.302556581911], +[0.4577291957389, -0.3027958649684], +[0.4625694162144, -0.303041234082], +[0.467392024847, -0.3032929142404], +[0.4721966829362, -0.3035511444423], +[0.4769830459679, -0.3038161787963], +[0.4817507636646, -0.3040882877262], +[0.4864994800868, -0.3043677592902], +[0.4912288337975, -0.3046549006283], +[0.4959384581028, -0.3049500395504], +[0.5006279813873, -0.3052535262796], +[0.5052970275614, -0.3055657353676], +[0.5099452166458, -0.3058870677993], +[0.5145721655222, -0.3062179533048], +[0.5191774888837, -0.3065588528999], +[0.5237608004265, -0.3069102616756], +[0.5283217143311, -0.3072727118578], +[0.5328598470916, -0.307646776159], +[0.5373748197659, -0.3080330714413], +[0.5418662607227, -0.308432262709], +[0.5463338089837, -0.3088450674458], +[0.5507771182886, -0.3092722602907], +[0.5551958619901, -0.3097146780601], +[0.5595897389518, -0.3101732250786], +[0.5639584806117, -0.3106488787717], +[0.5683018594022, -0.3111426954332], +[0.5726196987323, -0.3116558160313], +[0.5769118847398, -0.3121894718552], +[0.5811783800148, -0.3127449897187], +[0.5854192394637, -0.3133237963331], +[0.5896346284095, -0.3139274213358], +[0.5938248429022, -0.3145574983317], +[0.5979903320568, -0.3152157630992], +[0.6021317219229, -0.3159040480353], +[0.6062493122029, -0.3166237708797], +[-0.6041975495571, -0.3130696003107], +[-0.6000370367193, -0.3123430373388], +[-0.5958545468968, -0.3116471784544], +[-0.5916493179466, -0.3109802824283], +[-0.5874207620545, -0.3103406805613], +[-0.5831684459149, -0.3097267856594], +[-0.5788920713481, -0.3091370971457], +[-0.5745914569315, -0.3085702031959], +[-0.5702665211333, -0.3080247804779], +[-0.5659172670805, -0.3074995922094], +[-0.5615437690395, -0.3069934850132], +[-0.5571461605644, -0.3065053849825], +[-0.5527246242143, -0.3060342932745], +[-0.5482793827014, -0.3055792814754], +[-0.5438106913251, -0.3051394869097], +[-0.5393188315387, -0.3047141080201], +[-0.5348041055081, -0.3043023999025], +[-0.5302668315242, -0.3039036700526], +[-0.5257073401551, -0.3035172743534], +[-0.5211259710261, -0.3031426133233], +[-0.516523070135, -0.3027791286277], +[-0.511898987622, -0.3024262998508], +[-0.5072540759237, -0.302083641519], +[-0.5025886882522, -0.3017507003629], +[-0.4979031773465, -0.3014270528048], +[-0.4931978944543, -0.3011123026552], +[-0.4884731885066, -0.3008060790041], +[-0.4837294054541, -0.30050803429], +[-0.4789668877404, -0.3002178425346], +[-0.4741859738872, -0.2999351977264], +[-0.4693869981754, -0.2996598123421], +[-0.4645702904055, -0.2993914159936], +[-0.459736175723, -0.2991297541882], +[-0.4548849744999, -0.2988745871928], +[-0.4500170022606, -0.2986256889926], +[-0.4451325696456, -0.2983828463357], +[-0.4402319824066, -0.2981458578553], +[-0.4353155414262, -0.2979145332634], +[-0.4303835427587, -0.297688692609], +[-0.4254362776873, -0.2974681655947], +[-0.4204740327952, -0.2972527909477], +[-0.4154970900464, -0.2970424158391], +[-0.4105057268755, -0.2968368953475], +[-0.405500216284, -0.2966360919643], +[-0.40048082694, -0.2964398751347], +[-0.3954478232832, -0.2962481208344], +[-0.39040146563, -0.2960607111756], +[-0.3853420102818, -0.295877534043], +[-0.3802697096323, -0.2956984827548], +[-0.3751848122754, -0.2955234557483], +[-0.3700875631126, -0.2953523562874], +[-0.3649782034583, -0.2951850921901], +[-0.3598569711454, -0.2950215755747], +[-0.3547241006271, -0.2948617226233], +[-0.3495798230786, -0.2947054533609], +[-0.3444243664961, -0.2945526914491], +[-0.3392579557928, -0.2944033639935], +[-0.3340808128943, -0.2942574013633], +[-0.32889315683, -0.2941147370223], +[-0.3236952038234, -0.2939753073712], +[-0.3184871673791, -0.2938390515986], +[-0.3132692583682, -0.2937059115427], +[-0.308041685111, -0.2935758315604], +[-0.3028046534571, -0.2934487584044], +[-0.2975583668638, -0.2933246411083], +[-0.2923030264719, -0.2932034308779], +[-0.2870388311794, -0.2930850809894], +[-0.281765977713, -0.2929695466931], +[-0.2764846606977, -0.2928567851228], +[-0.2711950727245, -0.2927467552108], +[-0.2658974044155, -0.2926394176073], +[-0.2605918444879, -0.292534734604], +[-0.2552785798159, -0.2924326700633], +[-0.2499577954907, -0.29233318935], +[-0.244629674879, -0.2922362592672], +[-0.2392943996796, -0.2921418479965], +[-0.2339521499789, -0.2920499250406], +[-0.2286031043046, -0.2919604611687], +[-0.2232474396779, -0.2918734283665], +[-0.2178853316644, -0.2917887997867], +[-0.212516954424, -0.2917065497041], +[-0.2071424807586, -0.2916266534717], +[-0.20176208216, -0.2915490874799], +[-0.1963759288551, -0.2914738291178], +[-0.1909841898513, -0.291400856736], +[-0.18558703298, -0.2913301496122], +[-0.1801846249392, -0.2912616879179], +[-0.1747771313358, -0.2911954526872], +[-0.1693647167259, -0.2911314257875], +[-0.1639475446552, -0.291069589891], +[-0.1585257776978, -0.2910099284485], +[-0.1530995774947, -0.2909524256644], +[-0.1476691047917, -0.2908970664727], +[-0.1422345194755, -0.2908438365146], +[-0.1367959806106, -0.2907927221175], +[-0.1313536464744, -0.2907437102746], +[-0.1259076745924, -0.2906967886263], +[-0.1204582217722, -0.2906519454423], +[-0.1150054441373, -0.2906091696045], +[-0.1095494971608, -0.2905684505918], +[-0.1040905356976, -0.2905297784644], +[-0.09862871401663, -0.2904931438505], +[-0.09316418583336, -0.2904585379329], +[-0.08769710434057, -0.2904259524367], +[-0.0822276222397, -0.2903953796183], +[-0.07675589177147, -0.2903668122542], +[-0.07128206474622, -0.2903402436313], +[-0.06580629257402, -0.290315667538], +[-0.06032872629437, -0.2902930782557], +[-0.0548495166057, -0.2902724705507], +[-0.04936881389466, -0.2902538396676], +[-0.04388676826509, -0.2902371813227], +[-0.03840352956695, -0.2902224916986], +[-0.03291924742485, -0.2902097674384], +[-0.02743407126669, -0.2901990056421], +[-0.02194815035189, -0.2901902038622], +[-0.01646163379974, -0.2901833601005], +[-0.01097467061749, -0.2901784728056], +[-0.005487409728453, -0.290175540871], +[1.210174265652e-15, -0.2901745636331], +[0.005487409728455, -0.2901755408709], +[0.01097467061749, -0.2901784728056], +[0.01646163379974, -0.2901833601005], +[0.02194815035189, -0.2901902038622], +[0.02743407126669, -0.2901990056421], +[0.03291924742486, -0.2902097674384], +[0.03840352956695, -0.2902224916986], +[0.0438867682651, -0.2902371813227], +[0.04936881389466, -0.2902538396676], +[0.0548495166057, -0.2902724705507], +[0.06032872629437, -0.2902930782557], +[0.06580629257403, -0.290315667538], +[0.07128206474622, -0.2903402436313], +[0.07675589177147, -0.2903668122542], +[0.08222762223971, -0.2903953796183], +[0.08769710434058, -0.2904259524367], +[0.09316418583336, -0.2904585379329], +[0.09862871401663, -0.2904931438505], +[0.1040905356976, -0.2905297784644], +[0.1095494971608, -0.2905684505918], +[0.1150054441373, -0.2906091696045], +[0.1204582217722, -0.2906519454423], +[0.1259076745924, -0.2906967886263], +[0.1313536464744, -0.2907437102746], +[0.1367959806106, -0.2907927221175], +[0.1422345194755, -0.2908438365146], +[0.1476691047917, -0.2908970664727], +[0.1530995774947, -0.2909524256644], +[0.1585257776978, -0.2910099284485], +[0.1639475446552, -0.291069589891], +[0.1693647167259, -0.2911314257875], +[0.1747771313358, -0.2911954526872], +[0.1801846249392, -0.2912616879179], +[0.18558703298, -0.2913301496122], +[0.1909841898513, -0.291400856736], +[0.1963759288551, -0.2914738291178], +[0.20176208216, -0.2915490874799], +[0.2071424807586, -0.2916266534717], +[0.212516954424, -0.2917065497041], +[0.2178853316644, -0.2917887997867], +[0.2232474396779, -0.2918734283665], +[0.2286031043046, -0.2919604611687], +[0.2339521499789, -0.2920499250406], +[0.2392943996796, -0.2921418479965], +[0.244629674879, -0.2922362592672], +[0.2499577954907, -0.29233318935], +[0.2552785798159, -0.2924326700633], +[0.2605918444879, -0.292534734604], +[0.2658974044155, -0.2926394176073], +[0.2711950727245, -0.2927467552108], +[0.2764846606977, -0.2928567851228], +[0.281765977713, -0.2929695466931], +[0.2870388311794, -0.2930850809894], +[0.2923030264719, -0.2932034308779], +[0.2975583668638, -0.2933246411083], +[0.3028046534571, -0.2934487584044], +[0.308041685111, -0.2935758315604], +[0.3132692583682, -0.2937059115427], +[0.3184871673791, -0.2938390515986], +[0.3236952038234, -0.2939753073712], +[0.32889315683, -0.2941147370223], +[0.3340808128943, -0.2942574013633], +[0.3392579557928, -0.2944033639935], +[0.3444243664961, -0.2945526914491], +[0.3495798230786, -0.2947054533609], +[0.3547241006271, -0.2948617226233], +[0.3598569711454, -0.2950215755747], +[0.3649782034583, -0.2951850921901], +[0.3700875631126, -0.2953523562874], +[0.3751848122754, -0.2955234557483], +[0.3802697096323, -0.2956984827548], +[0.3853420102818, -0.295877534043], +[0.39040146563, -0.2960607111756], +[0.3954478232832, -0.2962481208344], +[0.40048082694, -0.2964398751347], +[0.405500216284, -0.2966360919643], +[0.4105057268755, -0.2968368953475], +[0.4154970900464, -0.2970424158391], +[0.4204740327952, -0.2972527909477], +[0.4254362776873, -0.2974681655947], +[0.4303835427587, -0.297688692609], +[0.4353155414262, -0.2979145332634], +[0.4402319824066, -0.2981458578553], +[0.4451325696456, -0.2983828463357], +[0.4500170022606, -0.2986256889926], +[0.4548849744999, -0.2988745871928], +[0.459736175723, -0.2991297541882], +[0.4645702904055, -0.2993914159936], +[0.4693869981754, -0.2996598123421], +[0.4741859738872, -0.2999351977264], +[0.4789668877404, -0.3002178425346], +[0.4837294054541, -0.30050803429], +[0.4884731885065, -0.3008060790041], +[0.4931978944542, -0.3011123026553], +[0.4979031773466, -0.3014270528047], +[0.5025886882522, -0.3017507003629], +[0.5072540759237, -0.302083641519], +[0.511898987622, -0.3024262998509], +[0.516523070135, -0.3027791286277], +[0.5211259710261, -0.3031426133233], +[0.525707340155, -0.3035172743535], +[0.530266831524, -0.3039036700527], +[0.5348041055081, -0.3043023999025], +[0.5393188315391, -0.3047141080199], +[0.5438106913257, -0.3051394869093], +[0.5482793827016, -0.3055792814753], +[0.5527246242143, -0.3060342932745], +[0.5571461605644, -0.3065053849825], +[0.5615437690395, -0.3069934850132], +[0.5659172670805, -0.3074995922094], +[0.5702665211331, -0.3080247804781], +[0.5745914569312, -0.3085702031963], +[0.5788920713486, -0.3091370971451], +[0.5831684459171, -0.3097267856564], +[0.5874207620526, -0.3103406805642], +[0.5916493179461, -0.3109802824293], +[0.5958545468967, -0.3116471784545], +[0.6000370367193, -0.3123430373387], +[0.6041975495571, -0.3130696003107], +[-0.6021225195859, -0.3094755429736], +[-0.5979217539672, -0.3087431924172], +[-0.5937001864986, -0.3080404216922], +[-0.589457113309, -0.3073656423613], +[-0.5851919823974, -0.3067173276026], +[-0.5809043774992, -0.306094019945], +[-0.5765940021573, -0.305494335978], +[-0.5722606645386, -0.3049169685676], +[-0.5679042633106, -0.3043606871414], +[-0.5635247747613, -0.3038243365121], +[-0.5591222412343, -0.3033068346412], +[-0.5546967608714, -0.3028071696715], +[-0.550248478607, -0.3023243964889], +[-0.5457775783238, -0.3018576330183], +[-0.5412842760671, -0.3014060564044], +[-0.5367688142056, -0.3009688991921], +[-0.5322314564334, -0.3005454455851], +[-0.5276724835065, -0.300135027838], +[-0.5230921896207, -0.2997370228188], +[-0.5184908793432, -0.2993508487612], +[-0.5138688650224, -0.2989759622193], +[-0.5092264646068, -0.2986118552254], +[-0.5045639998148, -0.2982580526493], +[-0.4998817946042, -0.2979141097527], +[-0.495180173896, -0.297579609929], +[-0.4904594625149, -0.297254162619], +[-0.4857199843145, -0.2969374013913], +[-0.4809620614578, -0.2966289821755], +[-0.4761860138313, -0.2963285816373], +[-0.4713921585693, -0.2960358956848], +[-0.4665808096742, -0.2957506380956], +[-0.4617522777164, -0.2954725392542], +[-0.4569068696009, -0.2952013449912], +[-0.4520448883918, -0.2949368155154], +[-0.4471666331835, -0.2946787244315], +[-0.4422723990122, -0.2944268578349], +[-0.4373624768015, -0.2941810134779], +[-0.4324371533351, -0.2939410000015], +[-0.4274967112531, -0.293706636226], +[-0.4225414290676, -0.2934777504962], +[-0.4175715811942, -0.2932541800762], +[-0.4125874379965, -0.2930357705905], +[-0.407589265841, -0.2928223755052], +[-0.4025773271606, -0.292613855649], +[-0.397551880525, -0.2924100787684], +[-0.392513180716, -0.2922109191146], +[-0.3874614788074, -0.2920162570612], +[-0.3823970222475, -0.2918259787471], +[-0.3773200549436, -0.291639975746], +[-0.3722308173484, -0.2914581447576], +[-0.3671295465463, -0.2912803873208], +[-0.3620164763409, -0.2911066095453], +[-0.3568918373418, -0.2909367218618], +[-0.3517558570506, -0.2907706387887], +[-0.3466087599466, -0.2906082787141], +[-0.3414507675712, -0.290449563691], +[-0.3362820986107, -0.2902944192473], +[-0.3311029689786, -0.2901427742063], +[-0.3259135918953, -0.2899945605191], +[-0.320714177967, -0.2898497131075], +[-0.3155049352625, -0.2897081697164], +[-0.3102860693884, -0.289569870775], +[-0.3050577835628, -0.289434759267], +[-0.2998202786865, -0.2893027806074], +[-0.2945737534138, -0.2891738825279], +[-0.2893184042201, -0.2890480149681], +[-0.2840544254684, -0.2889251299735], +[-0.2787820094747, -0.288805181599], +[-0.2735013465707, -0.2886881258183], +[-0.2682126251652, -0.288573920438], +[-0.2629160318047, -0.288462525017], +[-0.2576117512309, -0.2883539007902], +[-0.2522999664385, -0.2882480105961], +[-0.2469808587299, -0.2881448188091], +[-0.2416546077695, -0.2880442912746], +[-0.2363213916364, -0.2879463952485], +[-0.2309813868757, -0.2878510993396], +[-0.2256347685481, -0.2877583734549], +[-0.2202817102795, -0.2876681887479], +[-0.2149223843078, -0.2875805175701], +[-0.2095569615298, -0.2874953334248], +[-0.2041856115467, -0.2874126109228], +[-0.198808502708, -0.2873323257414], +[-0.193425802155, -0.2872544545851], +[-0.1880376758633, -0.2871789751481], +[-0.1826442886841, -0.2871058660794], +[-0.1772458043845, -0.287035106949], +[-0.1718423856876, -0.2869666782167], +[-0.1664341943109, -0.2869005612019], +[-0.1610213910049, -0.2868367380554], +[-0.15560413559, -0.2867751917324], +[-0.1501825869933, -0.286715905967], +[-0.1447569032847, -0.2866588652487], +[-0.139327241712, -0.2866040547989], +[-0.1338937587357, -0.28655146055], +[-0.1284566100635, -0.2865010691251], +[-0.1230159506831, -0.2864528678185], +[-0.1175719348961, -0.2864068445779], +[-0.1121247163502, -0.2863629879874], +[-0.1066744480712, -0.2863212872515], +[-0.101221282495, -0.28628173218], +[-0.0957653714986, -0.2862443131739], +[-0.09030686643121, -0.2862090212124], +[-0.08484591814455, -0.2861758478403], +[-0.07938267702316, -0.2861447851566], +[-0.07391729301419, -0.2861158258038], +[-0.06844991565702, -0.2860889629582], +[-0.06298069411249, -0.2860641903204], +[-0.05750977719194, -0.286041502107], +[-0.05203731338605, -0.286020893043], +[-0.04656345089337, -0.2860023583547], +[-0.04108833764874, -0.2859858937636], +[-0.03561212135152, -0.2859714954805], +[-0.03013494949362, -0.2859591602006], +[-0.02465696938746, -0.2859488850991], +[-0.01917832819377, -0.2859406678279], +[-0.01369917294931, -0.2859345065118], +[-0.008219650594481, -0.2859303997469], +[-0.002739908000935, -0.2859283465981], +[0.002739908000937, -0.2859283465981], +[0.008219650594484, -0.2859303997469], +[0.01369917294931, -0.2859345065118], +[0.01917832819377, -0.2859406678279], +[0.02465696938746, -0.2859488850991], +[0.03013494949362, -0.2859591602006], +[0.03561212135152, -0.2859714954805], +[0.04108833764875, -0.2859858937636], +[0.04656345089337, -0.2860023583547], +[0.05203731338605, -0.286020893043], +[0.05750977719194, -0.286041502107], +[0.06298069411249, -0.2860641903204], +[0.06844991565702, -0.2860889629582], +[0.07391729301419, -0.2861158258038], +[0.07938267702316, -0.2861447851566], +[0.08484591814455, -0.2861758478403], +[0.09030686643121, -0.2862090212124], +[0.09576537149863, -0.286244313174], +[0.101221282495, -0.28628173218], +[0.1066744480712, -0.2863212872515], +[0.1121247163502, -0.2863629879874], +[0.1175719348961, -0.2864068445779], +[0.1230159506831, -0.2864528678185], +[0.1284566100635, -0.2865010691251], +[0.1338937587357, -0.28655146055], +[0.139327241712, -0.2866040547989], +[0.1447569032847, -0.2866588652487], +[0.1501825869933, -0.286715905967], +[0.15560413559, -0.2867751917324], +[0.1610213910049, -0.2868367380554], +[0.1664341943109, -0.2869005612019], +[0.1718423856876, -0.2869666782167], +[0.1772458043845, -0.287035106949], +[0.1826442886841, -0.2871058660794], +[0.1880376758633, -0.2871789751481], +[0.193425802155, -0.2872544545851], +[0.198808502708, -0.2873323257414], +[0.2041856115467, -0.2874126109228], +[0.2095569615298, -0.2874953334248], +[0.2149223843078, -0.2875805175701], +[0.2202817102795, -0.2876681887479], +[0.2256347685481, -0.2877583734549], +[0.2309813868757, -0.2878510993396], +[0.2363213916364, -0.2879463952485], +[0.2416546077695, -0.2880442912746], +[0.2469808587299, -0.2881448188091], +[0.2522999664385, -0.2882480105961], +[0.2576117512309, -0.2883539007902], +[0.2629160318047, -0.288462525017], +[0.2682126251652, -0.288573920438], +[0.2735013465707, -0.2886881258183], +[0.2787820094748, -0.288805181599], +[0.2840544254684, -0.2889251299735], +[0.2893184042201, -0.2890480149681], +[0.2945737534138, -0.2891738825279], +[0.2998202786865, -0.2893027806074], +[0.3050577835628, -0.289434759267], +[0.3102860693884, -0.289569870775], +[0.3155049352625, -0.2897081697164], +[0.320714177967, -0.2898497131075], +[0.3259135918953, -0.2899945605191], +[0.3311029689786, -0.2901427742063], +[0.3362820986107, -0.2902944192473], +[0.3414507675712, -0.290449563691], +[0.3466087599466, -0.2906082787141], +[0.3517558570506, -0.2907706387887], +[0.3568918373418, -0.2909367218618], +[0.3620164763409, -0.2911066095453], +[0.3671295465463, -0.2912803873208], +[0.3722308173484, -0.2914581447576], +[0.3773200549436, -0.291639975746], +[0.3823970222475, -0.2918259787471], +[0.3874614788074, -0.2920162570612], +[0.392513180716, -0.2922109191146], +[0.397551880525, -0.2924100787684], +[0.4025773271606, -0.292613855649], +[0.407589265841, -0.2928223755052], +[0.4125874379965, -0.2930357705905], +[0.4175715811942, -0.2932541800762], +[0.4225414290676, -0.2934777504962], +[0.4274967112531, -0.293706636226], +[0.4324371533351, -0.2939410000015], +[0.4373624768015, -0.2941810134779], +[0.4422723990122, -0.2944268578349], +[0.4471666331834, -0.2946787244315], +[0.4520448883918, -0.2949368155154], +[0.4569068696009, -0.2952013449912], +[0.4617522777164, -0.2954725392542], +[0.4665808096742, -0.2957506380956], +[0.4713921585693, -0.2960358956848], +[0.4761860138313, -0.2963285816373], +[0.4809620614578, -0.2966289821755], +[0.4857199843144, -0.2969374013913], +[0.4904594625149, -0.297254162619], +[0.495180173896, -0.297579609929], +[0.4998817946043, -0.2979141097527], +[0.5045639998148, -0.2982580526493], +[0.5092264646068, -0.2986118552254], +[0.5138688650224, -0.2989759622193], +[0.5184908793432, -0.2993508487612], +[0.5230921896207, -0.2997370228188], +[0.5276724835065, -0.300135027838], +[0.5322314564334, -0.300545445585], +[0.5367688142058, -0.3009688991919], +[0.5412842760677, -0.301406056404], +[0.5457775783242, -0.3018576330181], +[0.550248478607, -0.3023243964889], +[0.5546967608713, -0.3028071696716], +[0.5591222412342, -0.3033068346412], +[0.5635247747613, -0.303824336512], +[0.5679042633105, -0.3043606871415], +[0.5722606645385, -0.3049169685677], +[0.5765940021575, -0.3054943359778], +[0.5809043775, -0.3060940199438], +[0.585191982399, -0.3067173276002], +[0.5894571133093, -0.3073656423609], +[0.5937001864989, -0.3080404216914], +[0.5979217539674, -0.3087431924167], +[0.6021225195859, -0.3094755429736], +[-0.6000257423714, -0.3058438183067], +[-0.5957866774518, -0.3051061859173], +[-0.5915278834671, -0.3043971050547], +[-0.5872487086478, -0.3037151198887], +[-0.5829486343802, -0.3030588273936], +[-0.5786272619388, -0.3024268840473], +[-0.5742842993008, -0.301818010104], +[-0.5699195484777, -0.3012309918225], +[-0.5655328936255, -0.3006646820849], +[-0.5611242900958, -0.3001179997666], +[-0.5566937545041, -0.2995899281758], +[-0.5522413558295, -0.2990795128246], +[-0.547767207515, -0.2985858587498], +[-0.5432714605177, -0.2981081275482], +[-0.5387542972244, -0.2976455342681], +[-0.5342159261691, -0.2971973442444], +[-0.5296565774544, -0.2967628699622], +[-0.5250764988082, -0.2963414679964], +[-0.5204759521948, -0.2959325360638], +[-0.515855210914, -0.2955355102137], +[-0.5112145571231, -0.2951498621687], +[-0.5065542797274, -0.2947750968247], +[-0.5018746725889, -0.2944107499104], +[-0.4971760330084, -0.2940563858038], +[-0.4924586604449, -0.293711595503], +[-0.487722855436, -0.2933759947424], +[-0.4829689186932, -0.293049222248], +[-0.4781971503464, -0.2927309381233], +[-0.4734078493148, -0.2924208223576], +[-0.4686013127872, -0.2921185734478], +[-0.4637778357949, -0.2918239071261], +[-0.4589377108646, -0.2915365551851], +[-0.4540812277384, -0.2912562643933], +[-0.4492086731509, -0.2909827954934], +[-0.4443203306564, -0.2907159222779], +[-0.4394164804962, -0.2904554307338], +[-0.4344973995024, -0.2902011182532], +[-0.4295633610309, -0.2899527929022], +[-0.4246146349193, -0.2897102727455], +[-0.4196514874667, -0.2894733852198], +[-0.4146741814306, -0.2892419665546], +[-0.4096829760392, -0.2890158612336], +[-0.4046781270162, -0.2887949214966], +[-0.3996598866148, -0.2885790068759], +[-0.394628503662, -0.2883679837663], +[-0.3895842236078, -0.2881617250246], +[-0.3845272885818, -0.2879601095974], +[-0.3794579374525, -0.2877630221745], +[-0.374376405892, -0.2875703528657], +[-0.3692829264412, -0.2873819968995], +[-0.3641777285792, -0.2871978543417], +[-0.3590610387921, -0.2870178298333], +[-0.3539330806443, -0.2868418323445], +[-0.3487940748489, -0.2866697749451], +[-0.3436442393391, -0.2865015745902], +[-0.3384837893394, -0.2863371519184], +[-0.3333129374356, -0.2861764310634], +[-0.3281318936452, -0.2860193394772], +[-0.3229408654863, -0.2858658077639], +[-0.3177400580453, -0.2857157695241], +[-0.3125296740449, -0.2855691612082], +[-0.3073099139097, -0.2854259219787], +[-0.3020809758305, -0.2852859935811], +[-0.296843055829, -0.2851493202214], +[-0.2915963478189, -0.2850158484515], +[-0.2863410436681, -0.2848855270613], +[-0.2810773332575, -0.2847583069762], +[-0.2758054045401, -0.2846341411614], +[-0.2705254435975, -0.2845129845308], +[-0.2652376346967, -0.2843947938612], +[-0.2599421603437, -0.284279527712], +[-0.2546392013377, -0.2841671463478], +[-0.2493289368225, -0.284057611667], +[-0.2440115443381, -0.2839508871328], +[-0.2386871998701, -0.2838469377089], +[-0.2333560778985, -0.2837457297984], +[-0.2280183514451, -0.2836472311855], +[-0.2226741921203, -0.2835514109811], +[-0.217323770168, -0.2834582395708], +[-0.2119672545106, -0.2833676885657], +[-0.2066048127922, -0.2832797307559], +[-0.2012366114211, -0.2831943400664], +[-0.1958628156115, -0.2831114915154], +[-0.1904835894244, -0.2830311611743], +[-0.1850990958075, -0.282953326131], +[-0.179709496634, -0.2828779644535], +[-0.1743149527414, -0.2828050551567], +[-0.1689156239691, -0.2827345781706], +[-0.163511669195, -0.2826665143097], +[-0.1581032463721, -0.2826008452446], +[-0.152690512564, -0.282537553475], +[-0.1472736239799, -0.2824766223039], +[-0.1418527360089, -0.2824180358136], +[-0.1364280032541, -0.2823617788423], +[-0.1309995795656, -0.282307836963], +[-0.1255676180737, -0.2822561964627], +[-0.1201322712209, -0.2822068443232], +[-0.1146936907937, -0.2821597682029], +[-0.1092520279545, -0.2821149564198], +[-0.1038074332723, -0.2820723979351], +[-0.09836005675334, -0.2820320823385], +[-0.09291004787136, -0.2819939998336], +[-0.08745755559774, -0.2819581412249], +[-0.08200272843096, -0.2819244979055], +[-0.07654571442593, -0.2818930618452], +[-0.07108666122308, -0.2818638255802], +[-0.06562571607707, -0.281836782203], +[-0.06016302588537, -0.2818119253533], +[-0.05469873721657, -0.2817892492096], +[-0.04923299633846, -0.2817687484817], +[-0.04376594924601, -0.2817504184036], +[-0.03829774168906, -0.2817342547274], +[-0.03282851919996, -0.2817202537178], +[-0.02735842712108, -0.2817084121473], +[-0.02188761063208, -0.2816987272917], +[-0.01641621477726, -0.2816911969272], +[-0.01094438449267, -0.281685819327], +[-0.005472264633283, -0.2816825932591], +[9.554007360407e-16, -0.2816815179852], +[0.005472264633286, -0.2816825932591], +[0.01094438449267, -0.281685819327], +[0.01641621477726, -0.2816911969272], +[0.02188761063208, -0.2816987272917], +[0.02735842712108, -0.2817084121473], +[0.03282851919997, -0.2817202537178], +[0.03829774168906, -0.2817342547274], +[0.04376594924601, -0.2817504184036], +[0.04923299633846, -0.2817687484817], +[0.05469873721657, -0.2817892492096], +[0.06016302588537, -0.2818119253533], +[0.06562571607707, -0.281836782203], +[0.07108666122308, -0.2818638255802], +[0.07654571442594, -0.2818930618452], +[0.08200272843096, -0.2819244979055], +[0.08745755559774, -0.2819581412249], +[0.09291004787136, -0.2819939998336], +[0.09836005675334, -0.2820320823385], +[0.1038074332723, -0.2820723979351], +[0.1092520279545, -0.2821149564198], +[0.1146936907937, -0.2821597682029], +[0.1201322712209, -0.2822068443232], +[0.1255676180737, -0.2822561964627], +[0.1309995795656, -0.282307836963], +[0.1364280032541, -0.2823617788423], +[0.1418527360089, -0.2824180358136], +[0.1472736239799, -0.2824766223039], +[0.152690512564, -0.282537553475], +[0.1581032463721, -0.2826008452446], +[0.163511669195, -0.2826665143097], +[0.1689156239691, -0.2827345781706], +[0.1743149527414, -0.2828050551567], +[0.179709496634, -0.2828779644535], +[0.1850990958075, -0.282953326131], +[0.1904835894245, -0.2830311611743], +[0.1958628156115, -0.2831114915154], +[0.2012366114211, -0.2831943400664], +[0.2066048127922, -0.2832797307559], +[0.2119672545106, -0.2833676885657], +[0.217323770168, -0.2834582395708], +[0.2226741921203, -0.2835514109811], +[0.2280183514451, -0.2836472311855], +[0.2333560778985, -0.2837457297984], +[0.2386871998701, -0.2838469377089], +[0.2440115443381, -0.2839508871328], +[0.2493289368225, -0.284057611667], +[0.2546392013377, -0.2841671463478], +[0.2599421603437, -0.284279527712], +[0.2652376346967, -0.2843947938612], +[0.2705254435975, -0.2845129845308], +[0.2758054045401, -0.2846341411614], +[0.2810773332575, -0.2847583069762], +[0.2863410436681, -0.2848855270613], +[0.2915963478189, -0.2850158484515], +[0.296843055829, -0.2851493202214], +[0.3020809758305, -0.2852859935811], +[0.3073099139097, -0.2854259219787], +[0.3125296740449, -0.2855691612082], +[0.3177400580453, -0.2857157695241], +[0.3229408654861, -0.2858658077639], +[0.3281318936453, -0.2860193394772], +[0.3333129374356, -0.2861764310634], +[0.3384837893394, -0.2863371519184], +[0.3436442393391, -0.2865015745902], +[0.3487940748489, -0.2866697749451], +[0.3539330806443, -0.2868418323445], +[0.3590610387921, -0.2870178298334], +[0.3641777285792, -0.2871978543417], +[0.3692829264412, -0.2873819968995], +[0.374376405892, -0.2875703528657], +[0.3794579374525, -0.2877630221745], +[0.3845272885818, -0.2879601095974], +[0.3895842236078, -0.2881617250246], +[0.394628503662, -0.2883679837663], +[0.3996598866148, -0.2885790068759], +[0.4046781270162, -0.2887949214966], +[0.4096829760392, -0.2890158612336], +[0.4146741814306, -0.2892419665546], +[0.4196514874667, -0.2894733852198], +[0.4246146349193, -0.2897102727455], +[0.4295633610309, -0.2899527929022], +[0.4344973995024, -0.2902011182532], +[0.4394164804962, -0.2904554307338], +[0.4443203306564, -0.2907159222779], +[0.4492086731509, -0.2909827954935], +[0.4540812277384, -0.2912562643933], +[0.4589377108646, -0.2915365551851], +[0.4637778357949, -0.2918239071261], +[0.4686013127872, -0.2921185734478], +[0.4734078493149, -0.2924208223576], +[0.4781971503464, -0.2927309381233], +[0.4829689186932, -0.293049222248], +[0.4877228554359, -0.2933759947424], +[0.492458660445, -0.293711595503], +[0.4971760330086, -0.2940563858037], +[0.5018746725888, -0.2944107499104], +[0.5065542797274, -0.2947750968248], +[0.5112145571231, -0.2951498621687], +[0.515855210914, -0.2955355102137], +[0.5204759521948, -0.2959325360638], +[0.5250764988082, -0.2963414679964], +[0.5296565774544, -0.2967628699622], +[0.5342159261692, -0.2971973442443], +[0.5387542972246, -0.297645534268], +[0.5432714605181, -0.2981081275479], +[0.5477672075149, -0.2985858587498], +[0.5522413558291, -0.2990795128249], +[0.5566937545041, -0.2995899281758], +[0.5611242900958, -0.3001179997666], +[0.5655328936255, -0.3006646820849], +[0.5699195484777, -0.3012309918225], +[0.5742842993009, -0.3018180101039], +[0.578627261939, -0.302426884047], +[0.5829486343804, -0.3030588273932], +[0.5872487086478, -0.3037151198887], +[0.5915278834684, -0.3043971050518], +[0.5957866774524, -0.3051061859156], +[0.6000257423714, -0.3058438183067], +[-0.5979081226519, -0.3021759933632], +[-0.5936325488816, -0.3014335455882], +[-0.5893382305429, -0.3007187049458], +[-0.5850245626264, -0.3000301314856], +[-0.5806910575556, -0.2993665308768], +[-0.5763373341808, -0.2987266602259], +[-0.5719631067744, -0.2981093319384], +[-0.5675681743879, -0.2975134158904], +[-0.563152410781, -0.296937840252], +[-0.5587157550683, -0.2963815912451], +[-0.5542582031571, -0.2958437120844], +[-0.5497798000018, -0.2953233013163], +[-0.5452806326633, -0.2948195107342], +[-0.5407608241474, -0.294331543004], +[-0.5362205279491, -0.2938586491346], +[-0.5316599232808, -0.2934001258509], +[-0.5270792108891, -0.2929553129637], +[-0.5224786094179, -0.2925235907702], +[-0.5178583522544, -0.2921043775267], +[-0.5132186847998, -0.2916971270161], +[-0.508559862117, -0.2913013262273], +[-0.503882146906, -0.2909164931559], +[-0.4991858077674, -0.2905421747311], +[-0.4944711177158, -0.2901779448678], +[-0.4897383529094, -0.2898234026465], +[-0.4849877915694, -0.2894781706117], +[-0.4802197130605, -0.2891418931895], +[-0.4754343971136, -0.2888142352142], +[-0.4706321231693, -0.2884948805613], +[-0.465813169826, -0.2881835308778], +[-0.4609778143788, -0.2878799044057], +[-0.4561263324354, -0.2875837348901], +[-0.4512589975997, -0.2872947705687], +[-0.4463760812119, -0.2870127732339], +[-0.4414778521384, -0.2867375173642], +[-0.4365645766039, -0.2864687893189], +[-0.4316365180598, -0.2862063865913], +[-0.4266939370832, -0.285950117116], +[-0.4217370913029, -0.2856997986256], +[-0.4167662353479, -0.2854552580543], +[-0.4117816208147, -0.285216330983], +[-0.4067834962513, -0.2849828611242], +[-0.4017721071555, -0.2847546998425], +[-0.3967476959834, -0.2845317057085], +[-0.3917105021698, -0.2843137440835], +[-0.386660762155, -0.2841006867325], +[-0.3815987094194, -0.2838924114637], +[-0.3765245745238, -0.283688801791], +[-0.3714385851538, -0.2834897466205], +[-0.3663409661685, -0.2832951399566], +[-0.3612319396518, -0.2831048806273], +[-0.3561117249665, -0.2829188720276], +[-0.3509805388099, -0.2827370218793], +[-0.3458385952707, -0.2825592420055], +[-0.3406861058871, -0.2823854481196], +[-0.3355232797055, -0.2822155596277], +[-0.3303503233389, -0.2820494994426], +[-0.3251674410265, -0.2818871938095], +[-0.3199748346917, -0.281728572142], +[-0.3147727040013, -0.2815735668682], +[-0.309561246423, -0.2814221132858], +[-0.3043406572829, -0.2812741494255], +[-0.2991111298225, -0.2811296159228], +[-0.2938728552542, -0.2809884558967], +[-0.2886260228169, -0.2808506148361], +[-0.2833708198298, -0.2807160404919], +[-0.2781074317462, -0.2805846827753], +[-0.2728360422056, -0.2804564936624], +[-0.2675568330856, -0.2803314271037], +[-0.2622699845517, -0.2802094389381], +[-0.2569756751077, -0.2800904868127], +[-0.2516740816437, -0.2799745301062], +[-0.2463653794838, -0.2798615298563], +[-0.2410497424332, -0.2797514486919], +[-0.2357273428235, -0.2796442507681], +[-0.2303983515579, -0.2795399017049], +[-0.2250629381549, -0.2794383685293], +[-0.2197212707915, -0.2793396196204], +[-0.2143735163456, -0.2792436246573], +[-0.2090198404372, -0.2791503545699], +[-0.2036604074686, -0.2790597814917], +[-0.1982953806655, -0.2789718787165], +[-0.1929249221149, -0.2788866206555], +[-0.1875491928036, -0.2788039827979], +[-0.1821683526563, -0.2787239416733], +[-0.1767825605721, -0.2786464748158], +[-0.1713919744614, -0.2785715607301], +[-0.1659967512806, -0.2784991788597], +[-0.1605970470683, -0.2784293095563], +[-0.155193016979, -0.2783619340511], +[-0.1497848153173, -0.2782970344274], +[-0.1443725955714, -0.2782345935953], +[-0.1389565104458, -0.2781745952665], +[-0.1335367118939, -0.2781170239321], +[-0.12811335115, -0.2780618648403], +[-0.1226865787606, -0.278009103976], +[-0.1172565446154, -0.2779587280415], +[-0.1118233979786, -0.2779107244379], +[-0.1063872875187, -0.2778650812485], +[-0.1009483613384, -0.2778217872219], +[-0.09550676700468, -0.2777808317576], +[-0.09006265157777, -0.2777422048912], +[-0.08461616164029, -0.2777058972814], +[-0.07916744332599, -0.2776719001978], +[-0.07371664234817, -0.2776402055088], +[-0.06826390402798, -0.2776108056717], +[-0.06280937332239, -0.2775836937222], +[-0.05735319485199, -0.2775588632657], +[-0.0518955129286, -0.277536308469], +[-0.04643647158272, -0.2775160240525], +[-0.04097621459076, -0.2774980052838], +[-0.03551488550218, -0.2774822479712], +[-0.03005262766653, -0.2774687484588], +[-0.02458958426026, -0.2774575036213], +[-0.01912589831358, -0.2774485108605], +[-0.0136617127371, -0.2774417681018], +[-0.008197170348527, -0.2774372737914], +[-0.002732413899227, -0.2774350268948], +[0.002732413899229, -0.2774350268948], +[0.00819717034853, -0.2774372737914], +[0.0136617127371, -0.2774417681018], +[0.01912589831358, -0.2774485108605], +[0.02458958426027, -0.2774575036213], +[0.03005262766653, -0.2774687484588], +[0.03551488550219, -0.2774822479712], +[0.04097621459076, -0.2774980052838], +[0.04643647158272, -0.2775160240525], +[0.0518955129286, -0.277536308469], +[0.05735319485199, -0.2775588632657], +[0.06280937332239, -0.2775836937222], +[0.06826390402798, -0.2776108056717], +[0.07371664234817, -0.2776402055088], +[0.07916744332599, -0.2776719001978], +[0.0846161616403, -0.2777058972814], +[0.09006265157777, -0.2777422048912], +[0.09550676700468, -0.2777808317576], +[0.1009483613384, -0.2778217872219], +[0.1063872875187, -0.2778650812485], +[0.1118233979786, -0.2779107244379], +[0.1172565446154, -0.2779587280415], +[0.1226865787606, -0.278009103976], +[0.12811335115, -0.2780618648403], +[0.1335367118939, -0.2781170239321], +[0.1389565104458, -0.2781745952665], +[0.1443725955714, -0.2782345935953], +[0.1497848153173, -0.2782970344274], +[0.155193016979, -0.2783619340511], +[0.1605970470683, -0.2784293095563], +[0.1659967512806, -0.2784991788597], +[0.1713919744614, -0.2785715607301], +[0.1767825605721, -0.2786464748158], +[0.1821683526563, -0.2787239416733], +[0.1875491928036, -0.2788039827979], +[0.1929249221149, -0.2788866206555], +[0.1982953806655, -0.2789718787165], +[0.2036604074686, -0.2790597814917], +[0.2090198404368, -0.2791503545697], +[0.2143735163456, -0.2792436246573], +[0.2197212707915, -0.2793396196204], +[0.2250629381549, -0.2794383685293], +[0.2303983515579, -0.2795399017049], +[0.2357273428235, -0.2796442507681], +[0.2410497424332, -0.2797514486919], +[0.2463653794838, -0.2798615298563], +[0.2516740816437, -0.2799745301062], +[0.2569756751077, -0.2800904868127], +[0.2622699845517, -0.2802094389381], +[0.2675568330856, -0.2803314271037], +[0.2728360422056, -0.2804564936624], +[0.2781074317462, -0.2805846827753], +[0.2833708198298, -0.2807160404919], +[0.2886260228169, -0.2808506148361], +[0.2938728552542, -0.2809884558967], +[0.2991111298225, -0.2811296159228], +[0.3043406572829, -0.2812741494255], +[0.309561246423, -0.2814221132858], +[0.3147727040013, -0.2815735668682], +[0.3199748346917, -0.281728572142], +[0.3251674410265, -0.2818871938095], +[0.3303503233389, -0.2820494994426], +[0.3355232797055, -0.2822155596277], +[0.3406861058871, -0.2823854481196], +[0.3458385952707, -0.2825592420055], +[0.3509805388099, -0.2827370218793], +[0.3561117249665, -0.2829188720276], +[0.3612319396518, -0.2831048806273], +[0.3663409661685, -0.2832951399566], +[0.3714385851538, -0.2834897466205], +[0.3765245745238, -0.283688801791], +[0.3815987094194, -0.2838924114637], +[0.386660762155, -0.2841006867325], +[0.3917105021698, -0.2843137440835], +[0.3967476959834, -0.2845317057085], +[0.4017721071555, -0.2847546998425], +[0.4067834962513, -0.2849828611242], +[0.4117816208147, -0.285216330983], +[0.4167662353479, -0.2854552580543], +[0.4217370913029, -0.2856997986256], +[0.4266939370832, -0.285950117116], +[0.4316365180598, -0.2862063865913], +[0.4365645766039, -0.2864687893189], +[0.4414778521384, -0.2867375173642], +[0.4463760812119, -0.2870127732339], +[0.4512589975997, -0.2872947705687], +[0.4561263324354, -0.2875837348901], +[0.4609778143787, -0.2878799044057], +[0.465813169826, -0.2881835308778], +[0.4706321231693, -0.2884948805613], +[0.4754343971136, -0.2888142352142], +[0.4802197130605, -0.2891418931895], +[0.4849877915694, -0.2894781706117], +[0.4897383529095, -0.2898234026465], +[0.4944711177158, -0.2901779448678], +[0.4991858077676, -0.290542174731], +[0.503882146906, -0.2909164931559], +[0.508559862117, -0.2913013262273], +[0.5132186847998, -0.2916971270161], +[0.5178583522544, -0.2921043775267], +[0.5224786094179, -0.2925235907702], +[0.5270792108891, -0.2929553129637], +[0.5316599232809, -0.2934001258509], +[0.5362205279491, -0.2938586491346], +[0.5407608241473, -0.294331543004], +[0.5452806326631, -0.2948195107344], +[0.5497798000013, -0.2953233013168], +[0.5542582031569, -0.2958437120846], +[0.5587157550683, -0.2963815912452], +[0.563152410781, -0.296937840252], +[0.5675681743879, -0.2975134158904], +[0.5719631067744, -0.2981093319384], +[0.5763373341808, -0.2987266602259], +[0.5806910575555, -0.2993665308769], +[0.5850245626259, -0.3000301314865], +[0.5893382305458, -0.3007187049392], +[0.5936325488831, -0.3014335455842], +[0.597908122652, -0.302175993363], +[-0.5957704894989, -0.2984735041314], +[-0.5914600552612, -0.2977266735011], +[-0.5871317842488, -0.2970065794146], +[-0.5827851135624, -0.2963119838408], +[-0.578419584444, -0.2956416884122], +[-0.5740348330454, -0.2949945395565], +[-0.569630581188, -0.2943694319506], +[-0.5652066273585, -0.2937653106017], +[-0.5607628381314, -0.2931811717886], +[-0.5562991401392, -0.2926160630908], +[-0.5518155126627, -0.2920690827033], +[-0.5473119808704, -0.2915393782125], +[-0.5427886097087, -0.2910261449773], +[-0.5382454984295, -0.2905286242318], +[-0.5336827757044, -0.2900461010196], +[-0.5291005953093, -0.2895779020175], +[-0.5244991323119, -0.2891233933246], +[-0.5198785797262, -0.288681978254], +[-0.515239145585, -0.2882530951636], +[-0.510581050385, -0.2878362153501], +[-0.505904524864, -0.2874308410228], +[-0.5012098080715, -0.2870365033697], +[-0.4964971456978, -0.2866527607205], +[-0.4917667886293, -0.2862791968113], +[-0.4870189917043, -0.285915419151], +[-0.4822540126409, -0.2855610574878], +[-0.4774721111176, -0.2852157623733], +[-0.4726735479856, -0.2848792038206], +[-0.4678585845963, -0.2845510700521], +[-0.4630274822286, -0.2842310663321], +[-0.458180501603, -0.2839189138794], +[-0.4533179024712, -0.2836143488561], +[-0.4484399432711, -0.2833171214252], +[-0.4435468808376, -0.2830269948758], +[-0.4386389701636, -0.2827437448078], +[-0.4337164642026, -0.282467158375], +[-0.4287796137078, -0.2821970335805], +[-0.4238286671036, -0.2819331786205], +[-0.4188638703837, -0.2816754112747], +[-0.4138854670331, -0.2814235583382], +[-0.4088936979703, -0.2811774550924], +[-0.4038888015066, -0.2809369448119], +[-0.3988710133209, -0.2807018783053], +[-0.3938405664467, -0.2804721134863], +[-0.3887976912707, -0.2802475149742], +[-0.3837426155393, -0.28002795372], +[-0.3786755643768, -0.2798133066575], +[-0.3735967603024, -0.2796034563778], +[-0.3685064232629, -0.2793982908236], +[-0.3634047706626, -0.2791977030042], +[-0.3582920173998, -0.2790015907279], +[-0.3531683759069, -0.2788098563518], +[-0.348034056192, -0.2786224065467], +[-0.3428892658834, -0.2784391520773], +[-0.3377342102753, -0.278260007595], +[-0.3325690923752, -0.2780848914439], +[-0.327394112952, -0.2779137254787], +[-0.3222094705845, -0.2777464348926], +[-0.3170153617112, -0.2775829480562], +[-0.3118119806791, -0.2774231963658], +[-0.3065995197936, -0.2772671141002], +[-0.3013781693679, -0.2771146382859], +[-0.2961481177721, -0.2769657085702], +[-0.2909095514818, -0.2768202671014], +[-0.2856626551268, -0.2766782584157], +[-0.280407611539, -0.2765396293307], +[-0.2751446017996, -0.2764043288444], +[-0.269873805286, -0.2762723080401], +[-0.2645953997179, -0.2761435199965], +[-0.2593095612026, -0.2760179197026], +[-0.2540164642803, -0.2758954639774], +[-0.2487162819674, -0.2757761113935], +[-0.2434091858005, -0.2756598222052], +[-0.2380953458791, -0.2755465582804], +[-0.2327749309071, -0.2754362830359], +[-0.2274481082342, -0.2753289613762], +[-0.2221150438967, -0.2752245596358], +[-0.2167759026573, -0.275123045524], +[-0.211430848044, -0.2750243880728], +[-0.206080042389, -0.2749285575879], +[-0.2007236468661, -0.2748355256018], +[-0.1953618215286, -0.2747452648294], +[-0.1899947253453, -0.2746577491258], +[-0.1846225162368, -0.2745729534469], +[-0.1792453511107, -0.2744908538112], +[-0.173863385897, -0.2744114272643], +[-0.1684767755817, -0.2743346518448], +[-0.1630856742412, -0.2742605065522], +[-0.1576902350753, -0.2741889713161], +[-0.1522906104399, -0.2741200269681], +[-0.1468869518796, -0.2740536552136], +[-0.1414794101595, -0.2739898386068], +[-0.1360681352965, -0.2739285605255], +[-0.1306532765905, -0.2738698051485], +[-0.1252349826548, -0.2738135574333], +[-0.1198134014467, -0.2737598030963], +[-0.1143886802973, -0.2737085285923], +[-0.108960965941, -0.2736597210972], +[-0.1035304045445, -0.2736133684901], +[-0.09809714173641, -0.2735694593377], +[-0.09266132263511, -0.2735279828786], +[-0.08722309187772, -0.2734889290095], +[-0.08178259364793, -0.2734522882718], +[-0.07633997170397, -0.2734180518396], +[-0.07089536940624, -0.2733862115075], +[-0.06544892974475, -0.2733567596809], +[-0.06000079536641, -0.2733296893656], +[-0.05455110860206, -0.2733049941592], +[-0.04910001149337, -0.2732826682425], +[-0.04364764581966, -0.2732627063729], +[-0.03819415312447, -0.2732451038768], +[-0.03273967474206, -0.2732298566444], +[-0.02728435182381, -0.273216961124], +[-0.02182832536456, -0.2732064143182], +[-0.01637173622875, -0.2731982137793], +[-0.01091472517663, -0.273192357607], +[-0.005457432890351, -0.2731888444454], +[7.961672800339e-16, -0.2731876734818], +[0.005457432890353, -0.2731888444454], +[0.01091472517663, -0.273192357607], +[0.01637173622875, -0.2731982137793], +[0.02182832536456, -0.2732064143182], +[0.02728435182382, -0.273216961124], +[0.03273967474206, -0.2732298566444], +[0.03819415312447, -0.2732451038768], +[0.04364764581967, -0.2732627063729], +[0.04910001149337, -0.2732826682425], +[0.05455110860206, -0.2733049941592], +[0.06000079536642, -0.2733296893656], +[0.06544892974476, -0.2733567596809], +[0.07089536940624, -0.2733862115075], +[0.07633997170397, -0.2734180518396], +[0.08178259364793, -0.2734522882718], +[0.08722309187772, -0.2734889290095], +[0.09266132263512, -0.2735279828786], +[0.09809714173641, -0.2735694593377], +[0.1035304045446, -0.2736133684901], +[0.108960965941, -0.2736597210972], +[0.1143886802973, -0.2737085285923], +[0.1198134014467, -0.2737598030963], +[0.1252349826548, -0.2738135574333], +[0.1306532765905, -0.2738698051485], +[0.1360681352965, -0.2739285605255], +[0.1414794101595, -0.2739898386068], +[0.1468869518796, -0.2740536552136], +[0.1522906104399, -0.2741200269681], +[0.1576902350753, -0.2741889713161], +[0.1630856742412, -0.2742605065522], +[0.1684767755817, -0.2743346518448], +[0.173863385897, -0.2744114272643], +[0.1792453511107, -0.2744908538112], +[0.1846225162368, -0.2745729534469], +[0.1899947253453, -0.2746577491258], +[0.1953618215286, -0.2747452648294], +[0.2007236468661, -0.2748355256018], +[0.206080042389, -0.2749285575879], +[0.211430848044, -0.2750243880728], +[0.2167759026573, -0.275123045524], +[0.2221150438967, -0.2752245596358], +[0.2274481082342, -0.2753289613762], +[0.2327749309071, -0.2754362830359], +[0.2380953458791, -0.2755465582804], +[0.2434091858005, -0.2756598222052], +[0.2487162819674, -0.2757761113935], +[0.2540164642803, -0.2758954639774], +[0.2593095612026, -0.2760179197026], +[0.2645953997179, -0.2761435199965], +[0.269873805286, -0.2762723080401], +[0.2751446017996, -0.2764043288444], +[0.280407611539, -0.2765396293307], +[0.2856626551268, -0.2766782584157], +[0.2909095514818, -0.2768202671014], +[0.2961481177721, -0.2769657085702], +[0.3013781693679, -0.2771146382859], +[0.3065995197936, -0.2772671141002], +[0.3118119806791, -0.2774231963658], +[0.3170153617112, -0.2775829480562], +[0.3222094705845, -0.2777464348926], +[0.327394112952, -0.2779137254787], +[0.3325690923752, -0.2780848914439], +[0.3377342102753, -0.278260007595], +[0.3428892658834, -0.2784391520773], +[0.348034056192, -0.2786224065467], +[0.3531683759069, -0.2788098563518], +[0.3582920173998, -0.2790015907279], +[0.3634047706625, -0.2791977030042], +[0.3685064232629, -0.2793982908236], +[0.3735967603024, -0.2796034563778], +[0.3786755643768, -0.2798133066575], +[0.3837426155393, -0.28002795372], +[0.3887976912707, -0.2802475149742], +[0.3938405664467, -0.2804721134863], +[0.3988710133209, -0.2807018783053], +[0.4038888015066, -0.2809369448119], +[0.4088936979703, -0.2811774550924], +[0.4138854670331, -0.2814235583383], +[0.4188638703837, -0.2816754112747], +[0.4238286671036, -0.2819331786205], +[0.4287796137078, -0.2821970335805], +[0.4337164642026, -0.282467158375], +[0.4386389701636, -0.2827437448078], +[0.4435468808376, -0.2830269948758], +[0.4484399432711, -0.2833171214252], +[0.4533179024713, -0.2836143488561], +[0.458180501603, -0.2839189138794], +[0.4630274822286, -0.284231066332], +[0.4678585845964, -0.2845510700521], +[0.4726735479856, -0.2848792038206], +[0.4774721111176, -0.2852157623733], +[0.4822540126409, -0.2855610574878], +[0.4870189917043, -0.285915419151], +[0.4917667886293, -0.2862791968113], +[0.4964971456977, -0.2866527607205], +[0.5012098080715, -0.2870365033698], +[0.5059045248641, -0.2874308410228], +[0.510581050385, -0.28783621535], +[0.515239145585, -0.2882530951636], +[0.5198785797262, -0.288681978254], +[0.5244991323119, -0.2891233933246], +[0.5291005953093, -0.2895779020175], +[0.5336827757044, -0.2900461010196], +[0.5382454984294, -0.2905286242319], +[0.5427886097088, -0.2910261449773], +[0.5473119808701, -0.2915393782128], +[0.5518155126626, -0.2920690827034], +[0.5562991401392, -0.2926160630908], +[0.5607628381314, -0.2931811717886], +[0.5652066273585, -0.2937653106017], +[0.569630581188, -0.2943694319506], +[0.5740348330454, -0.2949945395565], +[0.5784195844439, -0.2956416884123], +[0.582785113562, -0.2963119838414], +[0.5871317842478, -0.2970065794168], +[0.591460055264, -0.2977266734936], +[0.5957704894989, -0.2984735041314], +[-0.5936130648007, -0.2947371868428], +[-0.5892698351488, -0.2939868619774], +[-0.5849090681609, -0.2932619827777], +[-0.5805307802832, -0.2925618869088], +[-0.5761345394845, -0.2918854612098], +[-0.571719998752, -0.2912316317558], +[-0.567286888267, -0.2905993669752], +[-0.562835007743, -0.2899876796124], +[-0.5583642190792, -0.2893956277284], +[-0.5538744394356, -0.2888223149173], +[-0.5493656347961, -0.2882668899001], +[-0.5448378140497, -0.2877285456361], +[-0.5402910236028, -0.2872065180699], +[-0.5357253425053, -0.2867000846223], +[-0.5311408780798, -0.2862085624972], +[-0.5265377620155, -0.2857313068803], +[-0.5219161468976, -0.2852677090783], +[-0.5172762031351, -0.2848171946412], +[-0.5126181162501, -0.2843792214997], +[-0.5079420844938, -0.2839532781403], +[-0.5032483167552, -0.2835388818363], +[-0.4985370307314, -0.2831355769456], +[-0.4938084513282, -0.2827429332848], +[-0.4890628092687, -0.2823605445819], +[-0.4843003398812, -0.2819880270121], +[-0.4795212820478, -0.2816250178153], +[-0.4747258772937, -0.2812711739952], +[-0.4699143689993, -0.2809261710972], +[-0.4650870017209, -0.2805897020632], +[-0.4602440206062, -0.2802614761589], +[-0.4553856708921, -0.2799412179709], +[-0.4505121974756, -0.2796286664696], +[-0.4456238445476, -0.2793235741341], +[-0.440720855282, -0.279025706135], +[-0.4358034715731, -0.278734839572], +[-0.4308719338148, -0.2784507627632], +[-0.4259264807163, -0.2781732745804], +[-0.4209673491502, -0.2779021838308], +[-0.4159947740277, -0.2776373086782], +[-0.411008988198, -0.277378476104], +[-0.406010222369, -0.2771255214031], +[-0.4009987050457, -0.2768782877138], +[-0.3959746624845, -0.2766366255778], +[-0.3909383186613, -0.2764003925292], +[-0.3858898952506, -0.2761694527103], +[-0.3808296116163, -0.2759436765123], +[-0.3757576848091, -0.2757229402382], +[-0.3706743295734, -0.2755071257879], +[-0.3655797583594, -0.2752961203628], +[-0.3604741813408, -0.2750898161888], +[-0.3553578064378, -0.2748881102568], +[-0.3502308393435, -0.2746909040789], +[-0.3450934835533, -0.2744981034594], +[-0.3399459403982, -0.2743096182801], +[-0.3347884090791, -0.2741253622979], +[-0.3296210867037, -0.2739452529553], +[-0.3244441683249, -0.2737692112008], +[-0.3192578469801, -0.2735971613215], +[-0.3140623137319, -0.2734290307839], +[-0.3088577577088, -0.273264750085], +[-0.3036443661473, -0.2731042526111], +[-0.2984223244334, -0.2729474745052], +[-0.293191816145, -0.2727943545419], +[-0.2879530230941, -0.2726448340085], +[-0.2827061253686, -0.2724988565939], +[-0.2774513013749, -0.2723563682827], +[-0.272188727879, -0.2722173172555], +[-0.2669185800482, -0.2720816537948], +[-0.2616410314924, -0.2719493301954], +[-0.2563562543045, -0.27182030068], +[-0.2510644191009, -0.27169452132], +[-0.2457656950612, -0.2715719499587], +[-0.2404602499677, -0.2714525461407], +[-0.2351482502441, -0.2713362710436], +[-0.229829860994, -0.2712230874135], +[-0.2245052460387, -0.2711129595044], +[-0.2191745679544, -0.2710058530204], +[-0.2138379881087, -0.2709017350608], +[-0.2084956666981, -0.2708005740682], +[-0.2031477627822, -0.2707023397794], +[-0.1977944343201, -0.2706070031787], +[-0.1924358382045, -0.2705145364533], +[-0.1870721302963, -0.2704249129518], +[-0.1817034654582, -0.2703381071441], +[-0.1763299975882, -0.2702540945836], +[-0.1709518796524, -0.2701728518715], +[-0.1655692637174, -0.2700943566229], +[-0.160182300982, -0.2700185874346], +[-0.1547911418095, -0.2699455238545], +[-0.1493959357579, -0.2698751463531], +[-0.1439968316117, -0.2698074362956], +[-0.1385939774115, -0.2697423759168], +[-0.1331875204842, -0.2696799482958], +[-0.1277776074732, -0.2696201373336], +[-0.1223643843672, -0.269562927731], +[-0.1169479965295, -0.269508304968], +[-0.1115285887267, -0.2694562552844], +[-0.1061063051572, -0.2694067656615], +[-0.1006812894792, -0.2693598238053], +[-0.09525368483927, -0.2693154181296], +[-0.08982363389911, -0.269273537742], +[-0.0843912788637, -0.2692341724287], +[-0.07895676150832, -0.2691973126422], +[-0.07352022320555, -0.2691629494883], +[-0.06808180495222, -0.2691310747155], +[-0.062641647396, -0.269101680704], +[-0.05719989086195, -0.2690747604563], +[-0.05175667537887, -0.2690503075882], +[-0.04631214070554, -0.2690283163209], +[-0.04086642635676, -0.2690087814739], +[-0.03541967162941, -0.2689916984581], +[-0.02997201562824, -0.2689770632706], +[-0.02452359729173, -0.2689648724896], +[-0.01907455541779, -0.2689551232697], +[-0.01362502868938, -0.2689478133391], +[-0.008175155700111, -0.2689429409963], +[-0.002725074979842, -0.2689405051079], +[0.002725074979844, -0.2689405051079], +[0.008175155700112, -0.2689429409963], +[0.01362502868938, -0.2689478133391], +[0.01907455541779, -0.2689551232697], +[0.02452359729173, -0.2689648724896], +[0.02997201562824, -0.2689770632706], +[0.03541967162941, -0.2689916984581], +[0.04086642635676, -0.2690087814739], +[0.04631214070554, -0.2690283163209], +[0.05175667537887, -0.2690503075882], +[0.05719989086195, -0.2690747604563], +[0.062641647396, -0.269101680704], +[0.06808180495222, -0.2691310747155], +[0.07352022320556, -0.2691629494883], +[0.07895676150832, -0.2691973126422], +[0.08439127886371, -0.2692341724287], +[0.08982363389911, -0.269273537742], +[0.09525368483928, -0.2693154181296], +[0.1006812894793, -0.2693598238053], +[0.1061063051572, -0.2694067656615], +[0.1115285887267, -0.2694562552844], +[0.1169479965295, -0.269508304968], +[0.1223643843672, -0.269562927731], +[0.1277776074732, -0.2696201373336], +[0.1331875204842, -0.2696799482958], +[0.1385939774115, -0.2697423759168], +[0.1439968316117, -0.2698074362956], +[0.1493959357579, -0.2698751463531], +[0.1547911418095, -0.2699455238545], +[0.160182300982, -0.2700185874346], +[0.1655692637174, -0.2700943566229], +[0.1709518796524, -0.2701728518715], +[0.1763299975882, -0.2702540945836], +[0.1817034654582, -0.2703381071441], +[0.1870721302963, -0.2704249129518], +[0.1924358382045, -0.2705145364533], +[0.1977944343201, -0.2706070031787], +[0.2031477627822, -0.2707023397794], +[0.2084956666981, -0.2708005740682], +[0.2138379881087, -0.2709017350608], +[0.2191745679543, -0.2710058530204], +[0.2245052460387, -0.2711129595044], +[0.229829860994, -0.2712230874135], +[0.2351482502441, -0.2713362710436], +[0.2404602499677, -0.2714525461407], +[0.2457656950612, -0.2715719499587], +[0.2510644191009, -0.27169452132], +[0.2563562543045, -0.27182030068], +[0.2616410314924, -0.2719493301954], +[0.2669185800482, -0.2720816537948], +[0.272188727879, -0.2722173172555], +[0.2774513013749, -0.2723563682827], +[0.2827061253686, -0.2724988565939], +[0.2879530230941, -0.2726448340085], +[0.293191816145, -0.2727943545419], +[0.2984223244334, -0.2729474745052], +[0.3036443661473, -0.2731042526111], +[0.3088577577088, -0.273264750085], +[0.3140623137319, -0.2734290307839], +[0.3192578469801, -0.2735971613215], +[0.3244441683249, -0.2737692112008], +[0.3296210867037, -0.2739452529553], +[0.3347884090791, -0.2741253622979], +[0.3399459403982, -0.2743096182801], +[0.3450934835533, -0.2744981034594], +[0.3502308393435, -0.2746909040789], +[0.3553578064378, -0.2748881102568], +[0.3604741813408, -0.2750898161888], +[0.3655797583594, -0.2752961203628], +[0.3706743295734, -0.2755071257879], +[0.3757576848091, -0.2757229402382], +[0.3808296116163, -0.2759436765123], +[0.3858898952506, -0.2761694527103], +[0.3909383186613, -0.2764003925292], +[0.3959746624845, -0.2766366255778], +[0.4009987050457, -0.2768782877138], +[0.406010222369, -0.2771255214031], +[0.411008988198, -0.277378476104], +[0.4159947740277, -0.2776373086782], +[0.4209673491502, -0.2779021838308], +[0.4259264807163, -0.2781732745804], +[0.4308719338148, -0.2784507627632], +[0.4358034715731, -0.278734839572], +[0.440720855282, -0.279025706135], +[0.4456238445476, -0.2793235741341], +[0.4505121974756, -0.2796286664696], +[0.4553856708921, -0.2799412179709], +[0.4602440206062, -0.2802614761588], +[0.4650870017209, -0.2805897020632], +[0.4699143689993, -0.2809261710972], +[0.4747258772937, -0.2812711739952], +[0.4795212820478, -0.2816250178153], +[0.4843003398812, -0.2819880270121], +[0.4890628092687, -0.2823605445819], +[0.4938084513282, -0.2827429332848], +[0.4985370307314, -0.2831355769456], +[0.5032483167553, -0.2835388818363], +[0.5079420844939, -0.2839532781403], +[0.5126181162501, -0.2843792214997], +[0.5172762031351, -0.2848171946412], +[0.5219161468976, -0.2852677090783], +[0.5265377620155, -0.2857313068803], +[0.5311408780798, -0.2862085624973], +[0.5357253425053, -0.2867000846224], +[0.5402910236028, -0.2872065180699], +[0.54483781405, -0.2877285456359], +[0.5493656347964, -0.2882668898998], +[0.5538744394357, -0.2888223149171], +[0.5583642190792, -0.2893956277283], +[0.5628350077431, -0.2899876796124], +[0.567286888267, -0.2905993669752], +[0.571719998752, -0.2912316317558], +[0.5761345394846, -0.2918854612098], +[0.5805307802832, -0.2925618869089], +[0.5849090681612, -0.293261982777], +[0.5892698351496, -0.2939868619752], +[0.5936130647717, -0.2947371869348], +[-0.5914375967561, -0.2909692668711], +[-0.5870624839855, -0.2902153069461], +[-0.5826705758696, -0.2894860778665], +[-0.5782619630928, -0.2887809649753], +[-0.5738362384238, -0.2880989311077], +[-0.5693930710948, -0.2874389736781], +[-0.5649322001369, -0.2868001274833], +[-0.5604534278213, -0.2861814665397], +[-0.5559566133358, -0.2855821051017], +[-0.5514416667865, -0.2850011980067], +[-0.5469085435847, -0.2844379404749], +[-0.5423572392495, -0.2838915674792], +[-0.5377877846431, -0.2833613527851], +[-0.5332002416309, -0.2828466077454], +[-0.5285946991578, -0.2823466799209], +[-0.5239712697183, -0.2818609515833], +[-0.5193300861963, -0.2813888381503], +[-0.5146712990465, -0.2809297865869], +[-0.50999507379, -0.2804832738048], +[-0.5053015887947, -0.28004880508], +[-0.5005910333141, -0.2796259125075], +[-0.4958636057578, -0.2792141535039], +[-0.4911195121706, -0.2788131093659], +[-0.4863589648961, -0.2784223838925], +[-0.4815821814064, -0.2780416020719], +[-0.4767893832772, -0.2776704088362], +[-0.4719807952931, -0.2773084678828], +[-0.4671566446682, -0.2769554605624], +[-0.4623171603668, -0.2766110848326], +[-0.457462572514, -0.2762750542726], +[-0.4525931118851, -0.2759470971594], +[-0.4477090094636, -0.2756269556007], +[-0.4428104960606, -0.2753143847222], +[-0.4378978019878, -0.2750091519061], +[-0.4329711567764, -0.2747110360792], +[-0.4280307889385, -0.2744198270451], +[-0.423076925764, -0.2741353248604], +[-0.4181097931492, -0.2738573392504], +[-0.4131296154531, -0.2735856890625], +[-0.4081366153787, -0.2733202017544], +[-0.4031310138743, -0.2730607129158], +[-0.3981130300549, -0.2728070658191], +[-0.3930828811388, -0.2725591110003], +[-0.3880407823983, -0.2723167058654], +[-0.3829869471242, -0.2720797143215], +[-0.377921586599, -0.2718480064317], +[-0.3728449100814, -0.2716214580904], +[-0.3677571247975, -0.27139995072], +[-0.3626584359401, -0.2711833709844], +[-0.3575490466733, -0.2709716105221], +[-0.3524291581432, -0.2707645656935], +[-0.3472989694922, -0.2705621373446], +[-0.3421586778781, -0.2703642305844], +[-0.3370084784957, -0.2701707545753], +[-0.331848564602, -0.2699816223366], +[-0.3266791275433, -0.2697967505579], +[-0.3215003567845, -0.2696160594252], +[-0.3163124399397, -0.2694394724557], +[-0.3111155628049, -0.2692669163424], +[-0.3059099093914, -0.2690983208076], +[-0.30069566196, -0.2689336184645], +[-0.2954730010558, -0.2687727446867], +[-0.2902421055446, -0.2686156374846], +[-0.285003152648, -0.2684622373892], +[-0.2797563179803, -0.2683124873416], +[-0.2745017755845, -0.2681663325888], +[-0.2692396979692, -0.2680237205855], +[-0.2639702561448, -0.2678846009003], +[-0.2586936196598, -0.2677489251278], +[-0.2534099566374, -0.2676166468051], +[-0.2481194338114, -0.267487721332], +[-0.242822216562, -0.2673621058968], +[-0.2375184689512, -0.2672397594045], +[-0.2322083537583, -0.2671206424102], +[-0.2268920325148, -0.2670047170543], +[-0.221569665539, -0.2668919470028], +[-0.2162414119701, -0.2667822973892], +[-0.2109074298023, -0.2666757347606], +[-0.2055678759181, -0.2665722270256], +[-0.2002229061217, -0.2664717434053], +[-0.1948726751715, -0.2663742543872], +[-0.1895173368129, -0.2662797316805], +[-0.1841570438097, -0.2661881481749], +[-0.1787919479765, -0.2660994779003], +[-0.1734222002093, -0.2660136959896], +[-0.1680479505171, -0.2659307786426], +[-0.162669348052, -0.2658507030925], +[-0.1572865411395, -0.2657734475738], +[-0.1518996773089, -0.2656989912915], +[-0.1465089033222, -0.2656273143929], +[-0.1411143652039, -0.2655583979398], +[-0.1357162082699, -0.2654922238831], +[-0.1303145771559, -0.2654287750382], +[-0.1249096158462, -0.265368035062], +[-0.1195014677016, -0.2653099884312], +[-0.1140902754875, -0.2652546204219], +[-0.1086761814011, -0.2652019170899], +[-0.1032593270995, -0.265151865253], +[-0.09783985372611, -0.2651044524735], +[-0.09241790193817, -0.2650596670425], +[-0.08699361193328, -0.2650174979647], +[-0.081567123476, -0.2649779349445], +[-0.07613857592425, -0.2649409683728], +[-0.07070810825554, -0.2649065893153], +[-0.06527585909303, -0.2648747895008], +[-0.05984196673141, -0.264845561311], +[-0.05440656916276, -0.2648188977713], +[-0.04896980410213, -0.2647947925419], +[-0.04353180901311, -0.2647732399097], +[-0.03809272113329, -0.264754234782], +[-0.03265267749956, -0.2647377726795], +[-0.02721181497344, -0.2647238497312], +[-0.0217702702662, -0.2647124626697], +[-0.01632817996404, -0.264703608827], +[-0.01088568055313, -0.2646972861313], +[-0.005442908444706, -0.2646934931047], +[-4.789742356684e-14, -0.2646922288608], +[0.005442908444705, -0.2646934931046], +[0.01088568055313, -0.2646972861313], +[0.01632817996404, -0.264703608827], +[0.0217702702662, -0.2647124626697], +[0.02721181497344, -0.2647238497312], +[0.03265267749957, -0.2647377726795], +[0.03809272113329, -0.264754234782], +[0.04353180901311, -0.2647732399097], +[0.04896980410213, -0.2647947925419], +[0.05440656916277, -0.2648188977713], +[0.05984196673142, -0.264845561311], +[0.06527585909303, -0.2648747895008], +[0.07070810825554, -0.2649065893153], +[0.07613857592425, -0.2649409683728], +[0.081567123476, -0.2649779349445], +[0.08699361193328, -0.2650174979647], +[0.09241790193818, -0.2650596670425], +[0.09783985372611, -0.2651044524735], +[0.1032593270995, -0.265151865253], +[0.1086761814011, -0.2652019170899], +[0.1140902754875, -0.2652546204219], +[0.1195014677016, -0.2653099884312], +[0.1249096158462, -0.265368035062], +[0.1303145771559, -0.2654287750382], +[0.1357162082699, -0.2654922238831], +[0.1411143652039, -0.2655583979398], +[0.1465089033222, -0.2656273143929], +[0.1518996773089, -0.2656989912915], +[0.1572865411395, -0.2657734475738], +[0.162669348052, -0.2658507030925], +[0.1680479505171, -0.2659307786426], +[0.1734222002093, -0.2660136959896], +[0.1787919479765, -0.2660994779003], +[0.1841570438097, -0.2661881481749], +[0.1895173368129, -0.2662797316805], +[0.1948726751715, -0.2663742543872], +[0.2002229061217, -0.2664717434053], +[0.2055678759181, -0.2665722270256], +[0.2109074298023, -0.2666757347606], +[0.2162414119701, -0.2667822973892], +[0.221569665539, -0.2668919470028], +[0.2268920325148, -0.2670047170543], +[0.2322083537583, -0.2671206424102], +[0.2375184689512, -0.2672397594045], +[0.242822216562, -0.2673621058968], +[0.2481194338115, -0.267487721332], +[0.2534099566374, -0.2676166468051], +[0.2586936196598, -0.2677489251278], +[0.2639702561448, -0.2678846009003], +[0.2692396979692, -0.2680237205855], +[0.2745017755845, -0.2681663325888], +[0.2797563179803, -0.2683124873416], +[0.285003152648, -0.2684622373892], +[0.2902421055446, -0.2686156374846], +[0.2954730010558, -0.2687727446867], +[0.30069566196, -0.2689336184645], +[0.3059099093914, -0.2690983208076], +[0.3111155628049, -0.2692669163424], +[0.3163124399397, -0.2694394724557], +[0.3215003567845, -0.2696160594252], +[0.3266791275433, -0.2697967505579], +[0.331848564602, -0.2699816223366], +[0.3370084784957, -0.2701707545753], +[0.3421586778781, -0.2703642305844], +[0.3472989694922, -0.2705621373446], +[0.3524291581432, -0.2707645656935], +[0.3575490466734, -0.2709716105221], +[0.3626584359401, -0.2711833709844], +[0.3677571247975, -0.27139995072], +[0.3728449100814, -0.2716214580904], +[0.377921586599, -0.2718480064317], +[0.3829869471242, -0.2720797143215], +[0.3880407823983, -0.2723167058654], +[0.3930828811388, -0.2725591110003], +[0.3981130300549, -0.2728070658191], +[0.4031310138743, -0.2730607129158], +[0.4081366153787, -0.2733202017544], +[0.4131296154531, -0.2735856890625], +[0.4181097931492, -0.2738573392504], +[0.423076925764, -0.2741353248604], +[0.4280307889385, -0.2744198270451], +[0.4329711567764, -0.2747110360792], +[0.4378978019878, -0.2750091519061], +[0.4428104960606, -0.2753143847222], +[0.4477090094636, -0.2756269556007], +[0.4525931118851, -0.2759470971594], +[0.457462572514, -0.2762750542726], +[0.4623171603669, -0.2766110848326], +[0.4671566446682, -0.2769554605624], +[0.4719807952931, -0.2773084678828], +[0.4767893832771, -0.2776704088362], +[0.4815821814064, -0.2780416020719], +[0.4863589648961, -0.2784223838925], +[0.4911195121706, -0.2788131093659], +[0.4958636057578, -0.2792141535039], +[0.5005910333141, -0.2796259125075], +[0.5053015887949, -0.2800488050799], +[0.50999507379, -0.2804832738047], +[0.5146712990465, -0.2809297865869], +[0.5193300861963, -0.2813888381503], +[0.5239712697183, -0.2818609515833], +[0.5285946991578, -0.2823466799209], +[0.5332002416309, -0.2828466077454], +[0.5377877846431, -0.2833613527851], +[0.5423572392496, -0.2838915674791], +[0.5469085435848, -0.2844379404747], +[0.551441666787, -0.2850011980062], +[0.555956613336, -0.2855821051014], +[0.5604534278213, -0.2861814665397], +[0.5649322001368, -0.2868001274834], +[0.5693930710948, -0.2874389736781], +[0.5738362384238, -0.2880989311078], +[0.5782619630928, -0.2887809649754], +[0.5826705758697, -0.2894860778663], +[0.5870624839858, -0.2902153069454], +[0.5914375967262, -0.2909692669678], +[-0.5892442478605, -0.2871703987508], +[-0.5848385586916, -0.2864131191502], +[-0.5804167736054, -0.2856799464651], +[-0.575979044782, -0.2849702661001], +[-0.5715249880104, -0.2842831089852], +[-0.567054288108, -0.2836175366928], +[-0.5625666932107, -0.2829726439621], +[-0.5580620091277, -0.2823475604068], +[-0.553540093872, -0.2817414515257], +[-0.5490008524432, -0.2811535191312], +[-0.5444442319124, -0.2805830013046], +[-0.5398702168496, -0.2800291719605], +[-0.5352788250958, -0.2794913401206], +[-0.5306701038926, -0.278968848955], +[-0.5260441263565, -0.2784610746571], +[-0.5214009882869, -0.2779674252007], +[-0.5167408052884, -0.2774873390212], +[-0.512063710187, -0.2770202836554], +[-0.5073698507187, -0.2765657543628], +[-0.5026593874662, -0.2761232727549], +[-0.4979324920254, -0.2756923854426], +[-0.4931893453755, -0.2752726627185], +[-0.4884301364364, -0.2748636972801], +[-0.4836550607932, -0.274465103001], +[-0.47886431957, -0.2740765137546], +[-0.4740581184377, -0.2736975822915], +[-0.4692366667418, -0.273327979173], +[-0.4644001767351, -0.2729673917592], +[-0.4595488629063, -0.2726155232532], +[-0.4546829413911, -0.2722720917974], +[-0.4498026294582, -0.2719368296226], +[-0.4449081450608, -0.2716094822462], +[-0.4399997064468, -0.271289807719], +[-0.4350775318191, -0.2709775759159], +[-0.4301418390431, -0.2706725678711], +[-0.4251928453929, -0.270374575153], +[-0.4202307673338, -0.270083399278], +[-0.4152558203355, -0.26979885116], +[-0.4102682187132, -0.2695207505945], +[-0.4052681754928, -0.2692489257736], +[-0.4002559022978, -0.2689832128318], +[-0.3952316092544, -0.2687234554194], +[-0.390195504914, -0.2684695043019], +[-0.3851477961896, -0.2682212169842], +[-0.3800886883053, -0.2679784573577], +[-0.3750183847573, -0.2677410953685], +[-0.3699370872841, -0.2675090067058], +[-0.3648449958461, -0.2672820725095], +[-0.3597423086122, -0.2670601790941], +[-0.3546292219533, -0.2668432176903], +[-0.3495059304417, -0.266631084201], +[-0.3443726268551, -0.2664236789719], +[-0.3392295021854, -0.2662209065752], +[-0.3340767456509, -0.2660226756066], +[-0.3289145447124, -0.2658288984926], +[-0.3237430850917, -0.2656394913103], +[-0.3185625507922, -0.2654543736164], +[-0.3133731241225, -0.2652734682861], +[-0.3081749857208, -0.2650967013615], +[-0.3029683145819, -0.2649240019075], +[-0.297753288084, -0.2647553018764], +[-0.2925300820181, -0.2645905359797], +[-0.2872988706172, -0.264429641567], +[-0.2820598265867, -0.2642725585111], +[-0.2768131211351, -0.2641192290999], +[-0.2715589240056, -0.2639695979334], +[-0.266297403507, -0.2638236118267], +[-0.2610287265464, -0.263681219718], +[-0.2557530586604, -0.2635423725813], +[-0.2504705640479, -0.263407023344], +[-0.2451814056016, -0.2632751268083], +[-0.2398857449403, -0.2631466395773], +[-0.2345837424408, -0.2630215199844], +[-0.22927555727, -0.2628997280265], +[-0.2239613474163, -0.2627812253012], +[-0.2186412697215, -0.262665974946], +[-0.2133154799118, -0.2625539415818], +[-0.207984132629, -0.2624450912587], +[-0.2026473814616, -0.2623393914047], +[-0.1973053789755, -0.262236810777], +[-0.1919582767441, -0.2621373194157], +[-0.1866062253786, -0.2620408886], +[-0.1812493745581, -0.2619474908067], +[-0.1758878730588, -0.2618570996706], +[-0.170521868784, -0.2617696899471], +[-0.1651515087925, -0.2616852374765], +[-0.1597769393282, -0.2616037191506], +[-0.1543983058478, -0.2615251128806], +[-0.149015752975, -0.2614493974258], +[-0.1436294245091, -0.2613765526431], +[-0.1382394629107, -0.2613065590338], +[-0.1328460149527, -0.2612394006126], +[-0.1274492176836, -0.2611750569393], +[-0.1220492141903, -0.261113512611], +[-0.1166461452032, -0.2610547519125], +[-0.1112401508863, -0.2609987599472], +[-0.1058313708636, -0.2609455226182], +[-0.1004199442456, -0.2608950266094], +[-0.09500600965531, -0.2608472593694], +[-0.08958970525465, -0.260802209095], +[-0.08417116876986, -0.2607598647169], +[-0.07875053751747, -0.2607202158853], +[-0.07332794842979, -0.2606832529574], +[-0.06790353808034, -0.2606489669853], +[-0.06247744270911, -0.2606173497049], +[-0.05704979824781, -0.260588393526], +[-0.05162074034485, -0.2605620915226], +[-0.04619040439033, -0.2605384374248], +[-0.04075892554112, -0.2605174256113], +[-0.03532643874516, -0.2604990511018], +[-0.02989307876671, -0.2604833095521], +[-0.0244589802107, -0.2604701972478], +[-0.01902427754742, -0.2604597111007], +[-0.01358910513703, -0.2604518486444], +[-0.008153597254121, -0.2604466080319], +[-0.002717888112135, -0.2604439880331], +[0.002717888112136, -0.2604439880331], +[0.008153597254122, -0.2604466080319], +[0.01358910513703, -0.2604518486444], +[0.01902427754742, -0.2604597111007], +[0.02445898021071, -0.2604701972478], +[0.02989307876671, -0.2604833095521], +[0.03532643874517, -0.2604990511018], +[0.04075892554112, -0.2605174256113], +[0.04619040439038, -0.2605384374249], +[0.05162074034485, -0.2605620915226], +[0.05704979824781, -0.260588393526], +[0.06247744270912, -0.2606173497049], +[0.06790353808034, -0.2606489669853], +[0.07332794842979, -0.2606832529574], +[0.07875053751747, -0.2607202158853], +[0.08417116876986, -0.2607598647169], +[0.08958970525465, -0.260802209095], +[0.09500600965531, -0.2608472593694], +[0.1004199442456, -0.2608950266094], +[0.1058313708636, -0.2609455226182], +[0.1112401508863, -0.2609987599472], +[0.1166461452032, -0.2610547519125], +[0.1220492141903, -0.261113512611], +[0.1274492176836, -0.2611750569393], +[0.1328460149527, -0.2612394006126], +[0.1382394629107, -0.2613065590338], +[0.1436294245091, -0.2613765526431], +[0.149015752975, -0.2614493974258], +[0.1543983058478, -0.2615251128806], +[0.1597769393282, -0.2616037191506], +[0.1651515087925, -0.2616852374765], +[0.170521868784, -0.2617696899471], +[0.1758878730588, -0.2618570996706], +[0.1812493745581, -0.2619474908067], +[0.1866062253786, -0.2620408886], +[0.1919582767441, -0.2621373194157], +[0.1973053789755, -0.262236810777], +[0.2026473814616, -0.2623393914047], +[0.207984132629, -0.2624450912587], +[0.2133154799118, -0.2625539415818], +[0.2186412697215, -0.262665974946], +[0.2239613474163, -0.2627812253012], +[0.22927555727, -0.2628997280265], +[0.2345837424408, -0.2630215199844], +[0.2398857449403, -0.2631466395773], +[0.2451814056016, -0.2632751268083], +[0.2504705640479, -0.263407023344], +[0.2557530586604, -0.2635423725813], +[0.2610287265464, -0.263681219718], +[0.266297403507, -0.2638236118267], +[0.2715589240056, -0.2639695979334], +[0.2768131211351, -0.2641192290999], +[0.2820598265867, -0.2642725585111], +[0.2872988706172, -0.264429641567], +[0.2925300820181, -0.2645905359797], +[0.297753288084, -0.2647553018764], +[0.3029683145819, -0.2649240019075], +[0.3081749857208, -0.2650967013615], +[0.3133731241225, -0.2652734682861], +[0.3185625507922, -0.2654543736164], +[0.3237430850917, -0.2656394913103], +[0.3289145447124, -0.2658288984926], +[0.3340767456509, -0.2660226756066], +[0.3392295021854, -0.2662209065752], +[0.3443726268551, -0.2664236789719], +[0.3495059304417, -0.266631084201], +[0.3546292219533, -0.2668432176903], +[0.3597423086122, -0.2670601790941], +[0.3648449958461, -0.2672820725095], +[0.3699370872841, -0.2675090067058], +[0.3750183847573, -0.2677410953685], +[0.3800886883053, -0.2679784573577], +[0.3851477961896, -0.2682212169842], +[0.390195504914, -0.2684695043019], +[0.3952316092544, -0.2687234554194], +[0.4002559022978, -0.2689832128318], +[0.4052681754928, -0.2692489257736], +[0.4102682187132, -0.2695207505945], +[0.4152558203355, -0.26979885116], +[0.4202307673338, -0.270083399278], +[0.4251928453929, -0.270374575153], +[0.4301418390431, -0.2706725678711], +[0.4350775318191, -0.2709775759159], +[0.4399997064468, -0.271289807719], +[0.4449081450608, -0.2716094822462], +[0.4498026294582, -0.2719368296226], +[0.4546829413911, -0.2722720917974], +[0.4595488629063, -0.2726155232532], +[0.4644001767351, -0.2729673917592], +[0.4692366667417, -0.273327979173], +[0.4740581184377, -0.2736975822915], +[0.47886431957, -0.2740765137546], +[0.4836550607932, -0.274465103001], +[0.4884301364364, -0.2748636972801], +[0.4931893453755, -0.2752726627185], +[0.4979324920254, -0.2756923854426], +[0.5026593874662, -0.2761232727549], +[0.5073698507187, -0.2765657543628], +[0.512063710187, -0.2770202836554], +[0.5167408052884, -0.2774873390213], +[0.5214009882869, -0.2779674252007], +[0.5260441263565, -0.2784610746571], +[0.5306701038926, -0.278968848955], +[0.5352788250958, -0.2794913401206], +[0.5398702168496, -0.2800291719605], +[0.5444442319124, -0.2805830013046], +[0.5490008524432, -0.2811535191313], +[0.5535400938724, -0.2817414515251], +[0.5580620091278, -0.2823475604067], +[0.5625666932106, -0.2829726439622], +[0.567054288108, -0.2836175366928], +[0.5715249880104, -0.2842831089852], +[0.575979044782, -0.2849702661001], +[0.5804167736054, -0.2856799464651], +[0.5848385586916, -0.28641311915], +[0.5892442478305, -0.2871703988499], +[-0.5870335919044, -0.2833416364112], +[-0.5825985816192, -0.282581333708], +[-0.5781481026076, -0.2818445981786], +[-0.5736823916452, -0.2811307702212], +[-0.569201085905, -0.2804389420362], +[-0.5647038850964, -0.2797682331179], +[-0.5601905465445, -0.279117792529], +[-0.5556608803074, -0.2784868004827], +[-0.5511147444235, -0.2778744693283], +[-0.5465520403536, -0.2772800440325], +[-0.5419727086677, -0.276702802242], +[-0.5373767250017, -0.2761420540084], +[-0.532764096303, -0.27559714124], +[-0.5281348573699, -0.2750674369442], +[-0.5234890676802, -0.2745523443109], +[-0.5188268085019, -0.2740512956805], +[-0.5141481802724, -0.2735637514324], +[-0.5094533002301, -0.2730891988258], +[-0.5047423002836, -0.2726271508122], +[-0.5000153250959, -0.2721771448464], +[-0.4952725303726, -0.2717387417026], +[-0.4905140813306, -0.2713115243137], +[-0.4857401513338, -0.2708950966398], +[-0.480950920679, -0.2704890825726], +[-0.4761465755176, -0.2700931248808], +[-0.4713273068997, -0.269706884199], +[-0.4664933099273, -0.2693300380617], +[-0.4616447830052, -0.2689622799837], +[-0.456781927181, -0.268603318587], +[-0.4519049455617, -0.2682528767721], +[-0.447014042801, -0.2679106909349], +[-0.4421094246491, -0.2675765102266], +[-0.4371912975568, -0.2672500958543], +[-0.4322598683295, -0.2669312204227], +[-0.4273153438253, -0.2666196673131], +[-0.4223579306903, -0.2663152300989], +[-0.4173878351308, -0.2660177119952], +[-0.4124052627137, -0.2657269253412], +[-0.4074104181956, -0.265442691113], +[-0.4024035053754, -0.2651648384655], +[-0.397384726968, -0.2648932043015], +[-0.3923542844975, -0.2646276328662], +[-0.3873123782064, -0.2643679753661], +[-0.3822592069802, -0.2641140896102], +[-0.3771949682844, -0.2638658396723], +[-0.372119858114, -0.2636230955734], +[-0.3670340709524, -0.263385732983], +[-0.3619377997397, -0.2631536329367], +[-0.3568312358489, -0.2629266815718], +[-0.3517145690691, -0.262704769877], +[-0.3465879875949, -0.2624877934566], +[-0.3414516780215, -0.2622756523091], +[-0.3363058253436, -0.2620682506172], +[-0.3311506129603, -0.2618654965506], +[-0.3259862226815, -0.261667302079], +[-0.3208128347395, -0.2614735827966], +[-0.3156306278018, -0.2612842577558], +[-0.3104397789875, -0.2610992493096], +[-0.3052404638852, -0.2609184829637], +[-0.3000328565728, -0.2607418872356], +[-0.2948171296392, -0.2605693935225], +[-0.2895934542069, -0.260400935975], +[-0.284361999956, -0.2602364513787], +[-0.2791229351493, -0.2600758790417], +[-0.2738764266579, -0.2599191606877], +[-0.268622639988, -0.2597662403555], +[-0.2633617393074, -0.2596170643029], +[-0.2580938874735, -0.2594715809165], +[-0.2528192460608, -0.2593297406255], +[-0.2475379753895, -0.2591914958204], +[-0.2422502345535, -0.2590568007757], +[-0.236956181449, -0.2589256115764], +[-0.2316559728027, -0.2587978860487], +[-0.2263497642019, -0.2586735836941], +[-0.2210377101217, -0.2585526656263], +[-0.2157199639542, -0.2584350945122], +[-0.2103966780372, -0.2583208345155], +[-0.2050680036826, -0.2582098512426], +[-0.1997340912049, -0.2581021116925], +[-0.1943950899495, -0.2579975842078], +[-0.1890511483209, -0.2578962384294], +[-0.1837024138107, -0.2577980452527], +[-0.1783490330255, -0.2577029767863], +[-0.1729911517146, -0.2576110063132], +[-0.1676289147974, -0.2575221082531], +[-0.162262466391, -0.2574362581274], +[-0.1568919498374, -0.2573534325256], +[-0.1515175077304, -0.257273609074], +[-0.1461392821359, -0.2571967660997], +[-0.1407574139984, -0.2571228829071], +[-0.1353720432973, -0.2570519382601], +[-0.1299833109525, -0.2569839239301], +[-0.1245913556657, -0.2569188098824], +[-0.1191963161665, -0.2568565839331], +[-0.1137983305529, -0.256797230207], +[-0.1083975363849, -0.2567407336661], +[-0.1029940707096, -0.2566870800903], +[-0.0975880700868, -0.2566362560599], +[-0.09217967061414, -0.2565882489383], +[-0.08676900795227, -0.256543046857], +[-0.08135621734977, -0.2565006387002], +[-0.07594143366806, -0.2564610140917], +[-0.07052479140609, -0.2564241633818], +[-0.06510642472506, -0.256390077636], +[-0.0596864674729, -0.2563587486237], +[-0.05426505320875, -0.2563301688083], +[-0.04884231522731, -0.2563043313385], +[-0.04341838658316, -0.2562812300399], +[-0.03799340011493, -0.2562608594074], +[-0.0325674884695, -0.2562432145989], +[-0.02714078412607, -0.2562282914293], +[-0.0217134194202, -0.2562160863661], +[-0.01628552656784, -0.2562065965242], +[-0.01085723768928, -0.2561998196637], +[-0.005428684833074, -0.2561957541861], +[-6.717741042014e-13, -0.2561943991333], +[0.005428684833076, -0.2561957541861], +[0.01085723768928, -0.2561998196637], +[0.01628552656785, -0.2562065965242], +[0.02171341942021, -0.2562160863661], +[0.02714078412607, -0.2562282914293], +[0.0325674884695, -0.2562432145989], +[0.03799340011493, -0.2562608594074], +[0.04341838658316, -0.2562812300399], +[0.04884231522731, -0.2563043313385], +[0.05426505320875, -0.2563301688083], +[0.0596864674729, -0.2563587486237], +[0.06510642472513, -0.2563900776362], +[0.07052479140609, -0.2564241633818], +[0.07594143366806, -0.2564610140917], +[0.08135621734978, -0.2565006387002], +[0.08676900795227, -0.256543046857], +[0.09217967061415, -0.2565882489383], +[0.0975880700868, -0.2566362560599], +[0.1029940707096, -0.2566870800903], +[0.1083975363849, -0.2567407336661], +[0.1137983305529, -0.256797230207], +[0.1191963161665, -0.2568565839331], +[0.1245913556657, -0.2569188098824], +[0.1299833109525, -0.2569839239301], +[0.1353720432973, -0.2570519382601], +[0.1407574139984, -0.2571228829071], +[0.1461392821359, -0.2571967660997], +[0.1515175077304, -0.257273609074], +[0.1568919498374, -0.2573534325256], +[0.162262466391, -0.2574362581274], +[0.1676289147974, -0.2575221082531], +[0.1729911517146, -0.2576110063132], +[0.1783490330255, -0.2577029767863], +[0.1837024138107, -0.2577980452527], +[0.1890511483209, -0.2578962384294], +[0.1943950899495, -0.2579975842078], +[0.1997340912049, -0.2581021116925], +[0.2050680036826, -0.2582098512426], +[0.2103966780372, -0.2583208345155], +[0.2157199639543, -0.2584350945122], +[0.2210377101217, -0.2585526656263], +[0.2263497642019, -0.2586735836941], +[0.2316559728027, -0.2587978860487], +[0.236956181449, -0.2589256115765], +[0.2422502345535, -0.2590568007757], +[0.2475379753895, -0.2591914958204], +[0.2528192460608, -0.2593297406255], +[0.2580938874735, -0.2594715809165], +[0.2633617393074, -0.2596170643029], +[0.268622639988, -0.2597662403555], +[0.2738764266579, -0.2599191606877], +[0.2791229351493, -0.2600758790417], +[0.284361999956, -0.2602364513787], +[0.2895934542069, -0.260400935975], +[0.2948171296392, -0.2605693935225], +[0.3000328565728, -0.2607418872356], +[0.3052404638852, -0.2609184829637], +[0.3104397789875, -0.2610992493096], +[0.3156306278018, -0.2612842577558], +[0.3208128347395, -0.2614735827966], +[0.3259862226815, -0.261667302079], +[0.3311506129603, -0.2618654965506], +[0.3363058253436, -0.2620682506172], +[0.3414516780215, -0.2622756523091], +[0.3465879875949, -0.2624877934566], +[0.3517145690691, -0.262704769877], +[0.3568312358489, -0.2629266815718], +[0.3619377997397, -0.2631536329367], +[0.3670340709524, -0.263385732983], +[0.372119858114, -0.2636230955734], +[0.3771949682844, -0.2638658396723], +[0.3822592069802, -0.2641140896102], +[0.3873123782064, -0.2643679753661], +[0.3923542844975, -0.2646276328662], +[0.397384726968, -0.2648932043015], +[0.4024035053754, -0.2651648384655], +[0.4074104181956, -0.265442691113], +[0.4124052627137, -0.2657269253412], +[0.4173878351308, -0.2660177119952], +[0.4223579306903, -0.2663152300989], +[0.4273153438252, -0.2666196673131], +[0.4322598683295, -0.2669312204227], +[0.4371912975568, -0.2672500958543], +[0.4421094246491, -0.2675765102266], +[0.447014042801, -0.2679106909349], +[0.4519049455617, -0.2682528767721], +[0.456781927181, -0.268603318587], +[0.4616447830053, -0.2689622799837], +[0.4664933099273, -0.2693300380616], +[0.4713273068997, -0.269706884199], +[0.4761465755176, -0.2700931248808], +[0.480950920679, -0.2704890825726], +[0.4857401513338, -0.2708950966398], +[0.4905140813306, -0.2713115243137], +[0.4952725303726, -0.2717387417026], +[0.5000153250959, -0.2721771448464], +[0.5047423002836, -0.2726271508122], +[0.5094533002302, -0.2730891988257], +[0.5141481802724, -0.2735637514325], +[0.5188268085019, -0.2740512956805], +[0.5234890676802, -0.2745523443109], +[0.5281348573699, -0.2750674369442], +[0.532764096303, -0.27559714124], +[0.5373767250017, -0.2761420540084], +[0.5419727086677, -0.2767028022421], +[0.5465520403535, -0.2772800440326], +[0.5511147444232, -0.2778744693287], +[0.555660880307, -0.2784868004833], +[0.5601905465443, -0.2791177925292], +[0.5647038850964, -0.2797682331179], +[0.569201085905, -0.2804389420362], +[0.5736823916452, -0.2811307702212], +[0.5781481026077, -0.2818445981786], +[0.5825985816192, -0.282581333708], +[0.5870335918729, -0.2833416365174], +[-0.5848062467008, -0.27948402981], +[-0.5803430439887, -0.2787209182714], +[-0.5758649812402, -0.2779809780615], +[-0.5713723544721, -0.2772633961532], +[-0.5668648207408, -0.2765673200923], +[-0.5623420939435, -0.2758919218526], +[-0.5578039405557, -0.2752363998885], +[-0.5532501753879, -0.2745999805972], +[-0.5486806574388, -0.2739819192645], +[-0.5440952858972, -0.2733815005802], +[-0.5394939963415, -0.2727980387796], +[-0.5348767571587, -0.2722308774857], +[-0.5302435662, -0.2716793893065], +[-0.5255944476803, -0.2711429752392], +[-0.5209294493226, -0.2706210639247], +[-0.5162486397392, -0.2701131107908], +[-0.5115521060439, -0.2696185971156], +[-0.5068399516817, -0.269137029038], +[-0.5021122944635, -0.2686679365358], +[-0.4973692647916, -0.2682108723913], +[-0.4926110040616, -0.2677654111557], +[-0.4878376632269, -0.2673311481262], +[-0.4830494015114, -0.2669076983422], +[-0.4782463852577, -0.2664946956081], +[-0.473428786898, -0.2660917915482], +[-0.4685967840358, -0.265698654695], +[-0.4637505586283, -0.2653149696152], +[-0.4588902962591, -0.2649404360737], +[-0.4540161854919, -0.2645747682356], +[-0.4491284172976, -0.2642176939077], +[-0.4442271845462, -0.2638689538175], +[-0.4393126815577, -0.2635283009297], +[-0.4343851037054, -0.263195499799], +[-0.4294446470658, -0.2628703259576], +[-0.4244915081106, -0.2625525653367], +[-0.4195258834357, -0.2622420137202], +[-0.4145479695243, -0.2619384762281], +[-0.4095579625388, -0.2616417668307], +[-0.40455605814, -0.2613517078888], +[-0.3995424513291, -0.2610681297215], +[-0.3945173363121, -0.2607908701976], +[-0.3894809063814, -0.2605197743511], +[-0.3844333538151, -0.2602546940187], +[-0.379374869791, -0.2599954874976], +[-0.3743056443133, -0.2597420192234], +[-0.3692258661521, -0.259494159466], +[-0.3641357227923, -0.2592517840431], +[-0.3590354003921, -0.2590147740494], +[-0.3539250837504, -0.2587830156021], +[-0.3488049562804, -0.2585563995996], +[-0.3436751999908, -0.2583348214946], +[-0.3385359954718, -0.258118181079], +[-0.3333875218872, -0.2579063822821], +[-0.3282299569699, -0.2576993329783], +[-0.3230634770224, -0.2574969448065], +[-0.3178882569201, -0.257299132999], +[-0.3127044701183, -0.2571058162198], +[-0.3075122886613, -0.2569169164118], +[-0.3023118831946, -0.2567323586514], +[-0.2971034229785, -0.2565520710123], +[-0.2918870759042, -0.2563759844353], +[-0.2866630085112, -0.2562040326054], +[-0.2814313860059, -0.2560361518358], +[-0.2761923722819, -0.2558722809575], +[-0.2709461299412, -0.2557123612145], +[-0.2656928203157, -0.2555563361654], +[-0.2604326034906, -0.2554041515887], +[-0.2551656383278, -0.2552557553943], +[-0.2498920824895, -0.2551110975385], +[-0.2446120924631, -0.2549701299443], +[-0.239325823586, -0.2548328064248], +[-0.2340334300709, -0.2546990826113], +[-0.2287350650312, -0.2545689158844], +[-0.2234308805065, -0.2544422653093], +[-0.2181210274889, -0.2543190915733], +[-0.2128056559486, -0.254199356928], +[-0.20748491486, -0.2540830251326], +[-0.2021589522278, -0.2539700614016], +[-0.1968279151133, -0.253860432354], +[-0.19149194966, -0.2537541059661], +[-0.1861512011202, -0.2536510515255], +[-0.1808058138806, -0.2535512395884], +[-0.1754559314887, -0.2534546419388], +[-0.1701016966783, -0.2533612315496], +[-0.1647432513951, -0.2532709825452], +[-0.1593807368232, -0.2531838701676], +[-0.1540142934099, -0.2530998707424], +[-0.1486440611532, -0.2530189616991], +[-0.1432701792546, -0.2529411212487], +[-0.1378927872202, -0.2528663281498], +[-0.1325120257147, -0.2527945595271], +[-0.1271280110351, -0.2527258113498], +[-0.1217409059274, -0.2526600494187], +[-0.1163508366179, -0.2525972626285], +[-0.1109579385711, -0.2525374349747], +[-0.1055623467408, -0.252480551308], +[-0.1001641955944, -0.2524265973151], +[-0.09476361913719, -0.2523755595015], +[-0.08936075093698, -0.2523274251743], +[-0.08395572414809, -0.2522821824273], +[-0.07854867153546, -0.2522398201261], +[-0.07313972549889, -0.252200327895], +[-0.06772901809684, -0.2521636961044], +[-0.06231668107034, -0.252129915859], +[-0.05690284586684, -0.2520989789879], +[-0.05148764366391, -0.252070878034], +[-0.04607120539295, -0.252045606246], +[-0.04065366176279, -0.2520231575698], +[-0.03523514328327, -0.2520035266418], +[-0.02981578028877, -0.2519867087825], +[-0.02439570296166, -0.2519726999908], +[-0.01897504135579, -0.2519614969398], +[-0.01355392541985, -0.2519530969723], +[-0.00813248502081, -0.2519474980984], +[-0.002710849967252, -0.2519446989926], +[0.002710849967254, -0.2519446989926], +[0.008132485020812, -0.2519474980984], +[0.01355392541985, -0.2519530969723], +[0.01897504135579, -0.2519614969398], +[0.02439570296167, -0.2519726999908], +[0.02981578028877, -0.2519867087825], +[0.03523514328327, -0.2520035266418], +[0.04065366176279, -0.2520231575698], +[0.04607120539295, -0.252045606246], +[0.05148764366391, -0.252070878034], +[0.05690284586684, -0.2520989789879], +[0.06231668107034, -0.252129915859], +[0.06772901809684, -0.2521636961044], +[0.0731397254989, -0.252200327895], +[0.07854867153546, -0.2522398201261], +[0.08395572414811, -0.2522821824274], +[0.08936075093699, -0.2523274251743], +[0.09476361913719, -0.2523755595015], +[0.1001641955944, -0.2524265973151], +[0.1055623467408, -0.252480551308], +[0.1109579385711, -0.2525374349747], +[0.1163508366179, -0.2525972626285], +[0.1217409059274, -0.2526600494187], +[0.1271280110351, -0.2527258113498], +[0.1325120257147, -0.2527945595271], +[0.1378927872202, -0.2528663281498], +[0.1432701792546, -0.2529411212487], +[0.1486440611532, -0.2530189616991], +[0.1540142934099, -0.2530998707424], +[0.1593807368232, -0.2531838701676], +[0.1647432513951, -0.2532709825452], +[0.1701016966783, -0.2533612315496], +[0.1754559314886, -0.2534546419388], +[0.1808058138806, -0.2535512395884], +[0.1861512011202, -0.2536510515255], +[0.19149194966, -0.2537541059661], +[0.1968279151133, -0.253860432354], +[0.2021589522278, -0.2539700614016], +[0.20748491486, -0.2540830251326], +[0.2128056559486, -0.254199356928], +[0.2181210274889, -0.2543190915733], +[0.2234308805065, -0.2544422653093], +[0.2287350650312, -0.2545689158844], +[0.2340334300709, -0.2546990826113], +[0.239325823586, -0.2548328064248], +[0.2446120924631, -0.2549701299443], +[0.2498920824895, -0.2551110975385], +[0.2551656383278, -0.2552557553943], +[0.2604326034906, -0.2554041515887], +[0.2656928203157, -0.2555563361654], +[0.2709461299412, -0.2557123612145], +[0.2761923722819, -0.2558722809575], +[0.2814313860059, -0.2560361518358], +[0.2866630085112, -0.2562040326054], +[0.2918870759042, -0.2563759844353], +[0.2971034229785, -0.2565520710123], +[0.3023118831946, -0.2567323586514], +[0.3075122886613, -0.2569169164118], +[0.3127044701183, -0.2571058162198], +[0.3178882569201, -0.257299132999], +[0.3230634770224, -0.2574969448065], +[0.3282299569699, -0.2576993329783], +[0.3333875218872, -0.2579063822821], +[0.3385359954718, -0.258118181079], +[0.3436751999908, -0.2583348214946], +[0.3488049562804, -0.2585563995996], +[0.3539250837504, -0.2587830156021], +[0.3590354003921, -0.2590147740494], +[0.3641357227923, -0.2592517840431], +[0.3692258661521, -0.259494159466], +[0.3743056443133, -0.2597420192234], +[0.379374869791, -0.2599954874976], +[0.3844333538151, -0.2602546940187], +[0.3894809063814, -0.2605197743511], +[0.3945173363121, -0.2607908701976], +[0.3995424513291, -0.2610681297215], +[0.40455605814, -0.2613517078888], +[0.4095579625388, -0.2616417668307], +[0.4145479695243, -0.2619384762281], +[0.4195258834357, -0.2622420137202], +[0.4244915081106, -0.2625525653367], +[0.4294446470659, -0.2628703259576], +[0.4343851037054, -0.263195499799], +[0.4393126815577, -0.2635283009297], +[0.4442271845462, -0.2638689538175], +[0.4491284172976, -0.2642176939077], +[0.4540161854919, -0.2645747682356], +[0.4588902962591, -0.2649404360737], +[0.4637505586283, -0.2653149696152], +[0.4685967840358, -0.265698654695], +[0.473428786898, -0.2660917915482], +[0.4782463852577, -0.2664946956081], +[0.4830494015114, -0.2669076983422], +[0.4878376632269, -0.2673311481262], +[0.4926110040616, -0.2677654111557], +[0.4973692647916, -0.2682108723913], +[0.5021122944635, -0.2686679365358], +[0.5068399516817, -0.2691370290379], +[0.511552106044, -0.2696185971155], +[0.5162486397392, -0.2701131107907], +[0.5209294493226, -0.2706210639247], +[0.5255944476803, -0.2711429752392], +[0.5302435662, -0.2716793893065], +[0.5348767571587, -0.2722308774857], +[0.5394939963415, -0.2727980387796], +[0.5440952858971, -0.2733815005802], +[0.5486806574388, -0.2739819192644], +[0.5532501753881, -0.2745999805968], +[0.5578039405554, -0.2752363998889], +[0.5623420939434, -0.2758919218527], +[0.5668648207408, -0.2765673200923], +[0.5713723544721, -0.2772633961532], +[0.5758649812402, -0.2779809780615], +[0.5803430439887, -0.2787209182714], +[0.5848069466846, -0.2794840909462], +[-0.5825629825116, -0.2755977062625], +[-0.5780724088836, -0.2748327800465], +[-0.5735678068902, -0.2740899732019], +[-0.5690492695035, -0.2733690076591], +[-0.5645164722877, -0.2726690811398], +[-0.5599691426292, -0.2719894133271], +[-0.5554070560273, -0.2713292477208], +[-0.5508300323899, -0.2706878529841], +[-0.546237932398, -0.2700645238504], +[-0.5416306539892, -0.2694585816475], +[-0.5370081289967, -0.2688693744988], +[-0.5323703199678, -0.2682962772554], +[-0.5277172171783, -0.2677386912087], +[-0.5230488358497, -0.2671960436252], +[-0.5183652135727, -0.2666677871416], +[-0.5136664079325, -0.2661533990546], +[-0.5089524943308, -0.265652380531], +[-0.5042235639965, -0.265164255763], +[-0.4994797221745, -0.2646885710874], +[-0.4947210864809, -0.2642248940861], +[-0.4899477854146, -0.2637728126788], +[-0.4851599570125, -0.263331934221], +[-0.4803577476373, -0.262901884613], +[-0.4755413108875, -0.2624823074287], +[-0.4707108066168, -0.2620728630669], +[-0.4658664000564, -0.2616732279305], +[-0.4610082610276, -0.2612830936349], +[-0.4561365632384, -0.2609021662475], +[-0.4512514836543, -0.26053016556], +[-0.4463532019381, -0.2601668243927], +[-0.4414418999495, -0.2598118879316], +[-0.4365177613007, -0.2594651130975], +[-0.431580970961, -0.2591262679469], +[-0.4266317149059, -0.2587951311032], +[-0.4216701798061, -0.2584714912175], +[-0.4166965527525, -0.2581551464582], +[-0.4117110210131, -0.2578459040276], +[-0.4067137718184, -0.2575435797046], +[-0.4017049921734, -0.2572479974129], +[-0.3966848686921, -0.2569589888123], +[-0.3916535874524, -0.2566763929124], +[-0.3866113338704, -0.2564000557081], +[-0.3815582925902, -0.2561298298351], +[-0.3764946473896, -0.2558655742443], +[-0.371420581098, -0.2556071538941], +[-0.3663362755272, -0.2553544394604], +[-0.3612419114115, -0.2551073070618], +[-0.3561376683586, -0.2548656380005], +[-0.3510237248082, -0.2546293185171], +[-0.3459002579981, -0.2543982395587], +[-0.3407674439372, -0.2541722965607], +[-0.335625457385, -0.2539513892388], +[-0.3304744718352, -0.2537354213937], +[-0.3253146595054, -0.2535243007257], +[-0.3201461913307, -0.2533179386594], +[-0.3149692369601, -0.2531162501777], +[-0.3097839647578, -0.2529191536645], +[-0.3045905418064, -0.2527265707565], +[-0.2993891339132, -0.2525384262015], +[-0.2941799056187, -0.2523546477257], +[-0.2889630202074, -0.2521751659063], +[-0.28373863972, -0.2519999140524], +[-0.2785069249678, -0.2518288280906], +[-0.2732680355482, -0.2516618464576], +[-0.2680221298612, -0.2514989099975], +[-0.2627693651278, -0.2513399618651], +[-0.2575098974086, -0.2511849474336], +[-0.2522438816236, -0.2510338142068], +[-0.2469714715727, -0.2508865117369], +[-0.2416928199568, -0.2507429915448], +[-0.2364080783993, -0.2506032070459], +[-0.2311173974687, -0.2504671134786], +[-0.2258209267006, -0.250334667837], +[-0.220518814621, -0.2502058288065], +[-0.2152112087691, -0.2500805567032], +[-0.2098982557212, -0.2499588134156], +[-0.2045801011138, -0.24984056235], +[-0.1992568896678, -0.2497257683777], +[-0.1939287652119, -0.2496143977859], +[-0.1885958707073, -0.2495064182301], +[-0.1832583482711, -0.2494017986895], +[-0.1779163392006, -0.2493005094243], +[-0.1725699839977, -0.2492025219354], +[-0.1672194223927, -0.2491078089259], +[-0.1618647933686, -0.2490163442649], +[-0.1565062351853, -0.2489281029526], +[-0.1511438854035, -0.2488430610877], +[-0.145777881175, -0.2487611963587], +[-0.1404083593521, -0.2486824870075], +[-0.1350354585083, -0.2486069134597], +[-0.1296593248708, -0.2485344572032], +[-0.1242800312386, -0.2484650800464], +[-0.1188977845208, -0.2483987907408], +[-0.1135126915714, -0.2483355619188], +[-0.1081248852209, -0.2482753774772], +[-0.1027344978151, -0.2482182221851], +[-0.09734166123934, -0.2481640816651], +[-0.09194650694131, -0.2481129423763], +[-0.08654916595495, -0.2480647915976], +[-0.08114976892359, -0.2480196174126], +[-0.07574844612331, -0.2479774086955], +[-0.07034532748619, -0.2479381550978], +[-0.0649405426235, -0.247901847036], +[-0.05953422084884, -0.2478684756805], +[-0.05412649120122, -0.2478380329452], +[-0.04871748246815, -0.2478105114782], +[-0.04330732320857, -0.2477859046529], +[-0.03789614177591, -0.2477642065607], +[-0.03248406634094, -0.2477454120039], +[-0.0270712249147, -0.24772951649], +[-0.02165774537139, -0.2477165162261], +[-0.01624375547119, -0.247706408115], +[-0.01082938288307, -0.2476991897513], +[-0.005414755207661, -0.247694859419], +[8.280139712353e-16, -0.2476934160892], +[0.005414755207662, -0.247694859419], +[0.01082938288307, -0.2476991897513], +[0.01624375547119, -0.247706408115], +[0.0216577453714, -0.2477165162261], +[0.02707122491471, -0.24772951649], +[0.03248406634094, -0.2477454120039], +[0.03789614177591, -0.2477642065607], +[0.04330732320857, -0.2477859046529], +[0.04871748246815, -0.2478105114782], +[0.05412649120123, -0.2478380329452], +[0.05953422084884, -0.2478684756805], +[0.06494054262351, -0.247901847036], +[0.0703453274862, -0.2479381550978], +[0.07574844612331, -0.2479774086955], +[0.08114976892359, -0.2480196174126], +[0.08654916595495, -0.2480647915976], +[0.09194650694131, -0.2481129423763], +[0.09734166123934, -0.2481640816651], +[0.1027344978151, -0.248218222185], +[0.1081248852209, -0.2482753774772], +[0.1135126915714, -0.2483355619188], +[0.1188977845208, -0.2483987907408], +[0.1242800312386, -0.2484650800464], +[0.1296593248708, -0.2485344572032], +[0.1350354585083, -0.2486069134597], +[0.1404083593521, -0.2486824870075], +[0.145777881175, -0.2487611963587], +[0.1511438854035, -0.2488430610877], +[0.1565062351853, -0.2489281029526], +[0.1618647933686, -0.2490163442649], +[0.1672194223927, -0.2491078089259], +[0.1725699839977, -0.2492025219354], +[0.1779163392006, -0.2493005094243], +[0.1832583482711, -0.2494017986895], +[0.1885958707073, -0.2495064182301], +[0.1939287652119, -0.2496143977859], +[0.1992568896678, -0.2497257683777], +[0.2045801011138, -0.24984056235], +[0.2098982557212, -0.2499588134156], +[0.2152112087691, -0.2500805567032], +[0.220518814621, -0.2502058288065], +[0.2258209267006, -0.250334667837], +[0.2311173974687, -0.2504671134786], +[0.2364080783993, -0.2506032070459], +[0.2416928199568, -0.2507429915448], +[0.2469714715727, -0.2508865117369], +[0.2522438816236, -0.2510338142068], +[0.2575098974086, -0.2511849474336], +[0.2627693651278, -0.2513399618651], +[0.2680221298612, -0.2514989099975], +[0.2732680355482, -0.2516618464576], +[0.2785069249678, -0.2518288280906], +[0.28373863972, -0.2519999140524], +[0.2889630202074, -0.2521751659063], +[0.2941799056187, -0.2523546477257], +[0.2993891339132, -0.2525384262015], +[0.3045905418064, -0.2527265707565], +[0.3097839647578, -0.2529191536645], +[0.3149692369601, -0.2531162501777], +[0.3201461913307, -0.2533179386594], +[0.3253146595054, -0.2535243007257], +[0.3304744718352, -0.2537354213937], +[0.335625457385, -0.2539513892388], +[0.3407674439372, -0.2541722965607], +[0.3459002579981, -0.2543982395587], +[0.3510237248082, -0.2546293185171], +[0.3561376683586, -0.2548656380005], +[0.3612419114115, -0.2551073070618], +[0.3663362755272, -0.2553544394604], +[0.371420581098, -0.2556071538941], +[0.3764946473896, -0.2558655742443], +[0.3815582925902, -0.2561298298351], +[0.3866113338704, -0.2564000557081], +[0.3916535874524, -0.2566763929124], +[0.3966848686921, -0.2569589888123], +[0.4017049921734, -0.2572479974129], +[0.4067137718184, -0.2575435797046], +[0.4117110210131, -0.2578459040276], +[0.4166965527525, -0.2581551464582], +[0.4216701798061, -0.2584714912175], +[0.4266317149059, -0.2587951311032], +[0.431580970961, -0.2591262679469], +[0.4365177613007, -0.2594651130975], +[0.4414418999495, -0.2598118879316], +[0.4463532019381, -0.2601668243927], +[0.4512514836543, -0.26053016556], +[0.4561365632384, -0.2609021662475], +[0.4610082610276, -0.2612830936349], +[0.4658664000564, -0.2616732279305], +[0.4707108066168, -0.2620728630669], +[0.4755413108875, -0.2624823074287], +[0.4803577476373, -0.262901884613], +[0.4851599570125, -0.263331934221], +[0.4899477854146, -0.2637728126788], +[0.4947210864809, -0.2642248940861], +[0.4994797221745, -0.2646885710875], +[0.5042235639965, -0.265164255763], +[0.5089524943308, -0.265652380531], +[0.5136664079326, -0.2661533990545], +[0.5183652135728, -0.2666677871415], +[0.5230488358497, -0.2671960436252], +[0.5277172171783, -0.2677386912088], +[0.5323703199678, -0.2682962772554], +[0.5370081289967, -0.2688693744988], +[0.5416306539892, -0.2694585816476], +[0.546237932398, -0.2700645238504], +[0.55083003239, -0.2706878529839], +[0.5554070560274, -0.2713292477205], +[0.5599691426292, -0.2719894133271], +[0.5645164722877, -0.2726690811397], +[0.5690492695035, -0.2733690076591], +[0.5735678068902, -0.2740899732019], +[0.5780724088836, -0.2748327800465], +[0.5825629815896, -0.2755977086486], +[-0.5803036172164, -0.2716852073599], +[-0.5757871138753, -0.2709177718675], +[-0.5712569576725, -0.2701724184372], +[-0.5667134593392, -0.2694484187453], +[-0.5621563116861, -0.2687450161577], +[-0.5575852549074, -0.268061473868], +[-0.5530000733364, -0.2673970765765], +[-0.5484005921994, -0.2667511317301], +[-0.5437866744159, -0.2661229703839], +[-0.5391582174938, -0.2655119477257], +[-0.5345151505484, -0.2649174433173], +[-0.5298574314683, -0.2643388610961], +[-0.5251850442431, -0.2637756291781], +[-0.5204979964616, -0.2632271994987], +[-0.5157963169828, -0.2626930473245], +[-0.5110800537798, -0.2621726706645], +[-0.5063492719524, -0.2616655896043], +[-0.5016040519023, -0.2611713455845], +[-0.4968444876637, -0.2606895006414], +[-0.4920706853798, -0.2602196366234], +[-0.4872827619166, -0.2597613543965], +[-0.4824808436055, -0.2593142730478], +[-0.4776650651026, -0.2588780290943], +[-0.4728355683588, -0.2584522757055], +[-0.467992501689, -0.2580366819415], +[-0.4631360189336, -0.2576309320134], +[-0.4582662787037, -0.2572347245662], +[-0.4533834437022, -0.2568477719874], +[-0.4484876801151, -0.2564697997426], +[-0.4435791570643, -0.256100545738], +[-0.4386580461188, -0.255739759711], +[-0.4337245208564, -0.2553872026482], +[-0.4287787564727, -0.2550426462305], +[-0.4238209294311, -0.2547058723052], +[-0.4188512171521, -0.2543766723841], +[-0.4138697977354, -0.2540548471666], +[-0.4088768497139, -0.2537402060876], +[-0.4038725518344, -0.2534325668879], +[-0.3988570828645, -0.2531317552081], +[-0.3938306214203, -0.2528376042028], +[-0.3887933458162, -0.2525499541763], +[-0.383745433931, -0.2522686522364], +[-0.3786870630918, -0.251993551968], +[-0.3736184099714, -0.2517245131232], +[-0.3685396505, -0.2514614013282], +[-0.3634509597875, -0.2512040878063], +[-0.3583525120575, -0.2509524491153], +[-0.3532444805906, -0.250706366899], +[-0.3481270376753, -0.2504657276524], +[-0.3430003545683, -0.2502304224985], +[-0.3378646014601, -0.2500003469783], +[-0.3327199474478, -0.2497754008505], +[-0.327566560513, -0.2495554879029], +[-0.3224046075049, -0.2493405157735], +[-0.3172342541276, -0.2491303957801], +[-0.3120556649316, -0.2489250427603], +[-0.3068690033089, -0.2487243749189], +[-0.3016744314912, -0.2485283136831], +[-0.2964721105508, -0.2483367835659], +[-0.2912622004045, -0.248149712036], +[-0.2860448598197, -0.2479670293944], +[-0.2808202464216, -0.2477886686577], +[-0.275588516704, -0.247614565447], +[-0.2703498260399, -0.2474446578825], +[-0.2651043286948, -0.2472788864835], +[-0.2598521778408, -0.2471171940734], +[-0.2545935255716, -0.2469595256894], +[-0.2493285229192, -0.2468058284971], +[-0.2440573198707, -0.2466560517088], +[-0.2387800653864, -0.2465101465062], +[-0.2334969074186, -0.246368065967], +[-0.2282079929306, -0.2462297649951], +[-0.2229134679167, -0.2460952002539], +[-0.2176134774224, -0.2459643301037], +[-0.2123081655652, -0.2458371145412], +[-0.2069976755553, -0.2457135151428], +[-0.2016821497172, -0.2455934950103], +[-0.1963617295115, -0.2454770187197], +[-0.1910365555561, -0.2453640522717], +[-0.1857067676489, -0.2452545630455], +[-0.1803725047895, -0.2451485197547], +[-0.1750339052016, -0.2450458924051], +[-0.1696911063557, -0.2449466522549], +[-0.1643442449913, -0.2448507717768], +[-0.1589934571396, -0.2447582246221], +[-0.1536388781459, -0.2446689855865], +[-0.1482806426929, -0.2445830305779], +[-0.1429188840875, -0.2445003376899], +[-0.1375537365251, -0.244420886104], +[-0.1321853343391, -0.2443446616705], +[-0.1268138080009, -0.2442716062201], +[-0.1214392888712, -0.2442017468283], +[-0.1160619087252, -0.2441350486557], +[-0.1106817982402, -0.2440714946217], +[-0.105299087612, -0.2440110685539], +[-0.09991390657782, -0.2439537551688], +[-0.09452638443878, -0.2438995400537], +[-0.08913665008242, -0.243848409649], +[-0.08374483200535, -0.2438003512331], +[-0.07835105833577, -0.2437553529064], +[-0.07295545685598, -0.2437134035783], +[-0.06755815502484, -0.2436744929537], +[-0.06215928000024, -0.2436386115213], +[-0.05675895866148, -0.2436057505426], +[-0.05135731763172, -0.2435759020419], +[-0.04595448330028, -0.243549058797], +[-0.04055058184504, -0.2435252143311], +[-0.03514573925473, -0.2435043629053], +[-0.02974008135124, -0.2434864995123], +[-0.02433373381192, -0.2434716198705], +[-0.0189268221918, -0.2434597204192], +[-0.01351947194589, -0.2434507983148], +[-0.008111808451407, -0.2434448514273], +[-0.002703957030003, -0.243441878338], +[0.002703957030005, -0.243441878338], +[0.008111808451409, -0.2434448514273], +[0.01351947194589, -0.2434507983148], +[0.0189268221918, -0.2434597204192], +[0.02433373381192, -0.2434716198705], +[0.02974008135125, -0.2434864995123], +[0.03514573925473, -0.2435043629053], +[0.04055058184504, -0.2435252143311], +[0.04595448330028, -0.243549058797], +[0.05135731763172, -0.2435759020419], +[0.05675895866148, -0.2436057505426], +[0.06215928000024, -0.2436386115213], +[0.06755815502484, -0.2436744929537], +[0.07295545685598, -0.2437134035783], +[0.07835105833577, -0.2437553529064], +[0.08374483200535, -0.2438003512331], +[0.08913665008242, -0.243848409649], +[0.09452638443879, -0.2438995400537], +[0.09991390657783, -0.2439537551688], +[0.105299087612, -0.2440110685539], +[0.1106817982401, -0.2440714946217], +[0.1160619087252, -0.2441350486557], +[0.1214392888712, -0.2442017468283], +[0.1268138080009, -0.2442716062201], +[0.1321853343391, -0.2443446616705], +[0.1375537365251, -0.244420886104], +[0.1429188840875, -0.2445003376899], +[0.1482806426929, -0.2445830305779], +[0.1536388781459, -0.2446689855865], +[0.1589934571396, -0.2447582246221], +[0.1643442449913, -0.2448507717768], +[0.1696911063557, -0.2449466522549], +[0.1750339052016, -0.2450458924051], +[0.1803725047895, -0.2451485197547], +[0.1857067676489, -0.2452545630455], +[0.1910365555561, -0.2453640522717], +[0.1963617295115, -0.2454770187197], +[0.2016821497172, -0.2455934950103], +[0.2069976755553, -0.2457135151428], +[0.2123081655652, -0.2458371145412], +[0.2176134774224, -0.2459643301037], +[0.2229134679167, -0.2460952002539], +[0.2282079929306, -0.2462297649951], +[0.2334969074186, -0.246368065967], +[0.2387800653864, -0.2465101465062], +[0.2440573198707, -0.2466560517088], +[0.2493285229192, -0.2468058284971], +[0.2545935255716, -0.2469595256894], +[0.2598521778408, -0.2471171940734], +[0.2651043286948, -0.2472788864835], +[0.2703498260399, -0.2474446578825], +[0.275588516704, -0.247614565447], +[0.2808202464216, -0.2477886686577], +[0.2860448598197, -0.2479670293944], +[0.2912622004045, -0.248149712036], +[0.2964721105508, -0.2483367835659], +[0.3016744314912, -0.2485283136831], +[0.3068690033089, -0.2487243749189], +[0.3120556649316, -0.2489250427603], +[0.3172342541276, -0.2491303957801], +[0.3224046075049, -0.2493405157735], +[0.327566560513, -0.2495554879029], +[0.3327199474478, -0.2497754008505], +[0.3378646014601, -0.2500003469783], +[0.3430003545683, -0.2502304224985], +[0.3481270376753, -0.2504657276524], +[0.3532444805906, -0.250706366899], +[0.3583525120575, -0.2509524491153], +[0.3634509597875, -0.2512040878063], +[0.3685396505, -0.2514614013282], +[0.3736184099714, -0.2517245131232], +[0.3786870630918, -0.251993551968], +[0.3837454339311, -0.2522686522364], +[0.3887933458162, -0.2525499541763], +[0.3938306214203, -0.2528376042028], +[0.3988570828645, -0.2531317552081], +[0.4038725518344, -0.2534325668879], +[0.4088768497139, -0.2537402060876], +[0.4138697977354, -0.2540548471666], +[0.4188512171521, -0.2543766723841], +[0.4238209294311, -0.2547058723052], +[0.4287787564727, -0.2550426462305], +[0.4337245208564, -0.2553872026482], +[0.4386580461188, -0.255739759711], +[0.4435791570643, -0.256100545738], +[0.4484876801151, -0.2564697997426], +[0.4533834437023, -0.2568477719874], +[0.4582662787037, -0.2572347245662], +[0.4631360189336, -0.2576309320134], +[0.467992501689, -0.2580366819415], +[0.4728355683588, -0.2584522757054], +[0.4776650651026, -0.2588780290943], +[0.4824808436055, -0.2593142730478], +[0.4872827619166, -0.2597613543965], +[0.4920706853798, -0.2602196366234], +[0.4968444876637, -0.2606895006414], +[0.5016040519023, -0.2611713455845], +[0.5063492719524, -0.2616655896043], +[0.5110800537798, -0.2621726706644], +[0.5157963169829, -0.2626930473244], +[0.5204979964617, -0.2632271994986], +[0.5251850442431, -0.2637756291781], +[0.5298574314683, -0.2643388610961], +[0.5345151505484, -0.2649174433173], +[0.5391582174938, -0.2655119477257], +[0.5437866744159, -0.2661229703839], +[0.5484005921994, -0.2667511317301], +[0.5530000733365, -0.2673970765764], +[0.5575852549074, -0.2680614738681], +[0.5621563116862, -0.2687450161574], +[0.5667134593392, -0.2694484187451], +[0.5712569576725, -0.2701724184371], +[0.5757871138753, -0.2709177718675], +[0.5803042856902, -0.2716852533346], +[-0.5780299032455, -0.2677459134397], +[-0.5734875733314, -0.2669766974792], +[-0.5689327939637, -0.2662291013409], +[-0.5643652337951, -0.2655023982993], +[-0.5597846017273, -0.2647958733756], +[-0.5551906501028, -0.2641088295633], +[-0.550583171857, -0.2634405893498], +[-0.54596199766, -0.2627904958588], +[-0.5413269930919, -0.2621579136629], +[-0.5366780558911, -0.2615422293024], +[-0.5320151133026, -0.2609428515523], +[-0.5273381195464, -0.2603592114764], +[-0.5226470534205, -0.2597907623019], +[-0.5179419160468, -0.2592369791466], +[-0.5132227287627, -0.258697358627], +[-0.5084895311611, -0.2581714183699], +[-0.503742379275, -0.2576586964522], +[-0.498981343903, -0.2571587507844], +[-0.4942065090692, -0.256671158455], +[-0.4894179706134, -0.2561955150484], +[-0.4846158349003, -0.2557314339475], +[-0.4798002176437, -0.2552785456302], +[-0.474971242836, -0.2548364969672], +[-0.4701290417752, -0.2544049505265], +[-0.4652737521832, -0.2539835838906], +[-0.4604055174068, -0.2535720889885], +[-0.4555244856956, -0.2531701714466], +[-0.4506308095491, -0.2527775499599], +[-0.4457246451287, -0.2523939556854], +[-0.4408061517268, -0.2520191316578], +[-0.43587549129, -0.2516528322295], +[-0.4309328279894, -0.2512948225332], +[-0.4259783278354, -0.250944877969], +[-0.4210121583317, -0.2506027837141], +[-0.4160344881652, -0.2502683342557], +[-0.4110454869291, -0.2499413329461], +[-0.406045324874, -0.2496215915793], +[-0.4010341726873, -0.2493089299884], +[-0.3960122012952, -0.2490031756635], +[-0.3909795816873, -0.2487041633885], +[-0.3859364847606, -0.248411734896], +[-0.3808830811809, -0.2481257385413], +[-0.3758195412606, -0.2478460289912], +[-0.3707460348508, -0.2475724669303], +[-0.3656627312463, -0.2473049187823], +[-0.3605697991026, -0.2470432564448], +[-0.3554674063631, -0.2467873570394], +[-0.3503557201962, -0.2465371026736], +[-0.3452349069413, -0.2462923802152], +[-0.3401051320615, -0.246053081079], +[-0.3349665601044, -0.2458191010241], +[-0.3298193546691, -0.2455903399616], +[-0.3246636783779, -0.2453667017726], +[-0.3194996928544, -0.2451480941353], +[-0.3143275587055, -0.2449344283607], +[-0.3091474355075, -0.2447256192376], +[-0.3039594817965, -0.2445215848846], +[-0.2987638550618, -0.24432224661], +[-0.293560711742, -0.2441275287789], +[-0.2883502072246, -0.2439373586868], +[-0.2831324958476, -0.2437516664399], +[-0.2779077309031, -0.2435703848409], +[-0.2726760646435, -0.2433934492811], +[-0.2674376482888, -0.2432207976375], +[-0.2621926320361, -0.2430523701752], +[-0.2569411650702, -0.2428881094545], +[-0.2516833955753, -0.2427279602425], +[-0.2464194707484, -0.2425718694301], +[-0.2411495368132, -0.242419785951], +[-0.2358737390354, -0.2422716607071], +[-0.2305922217383, -0.2421274464958], +[-0.2253051283196, -0.2419870979415], +[-0.2200126012683, -0.2418505714308], +[-0.2147147821831, -0.2417178250501], +[-0.2094118117902, -0.2415888185271], +[-0.2041038299624, -0.2414635131743], +[-0.1987909757383, -0.2413418718362], +[-0.1934733873415, -0.2412238588382], +[-0.1881512022012, -0.2411094399389], +[-0.1828245569716, -0.2409985822837], +[-0.1774935875527, -0.2408912543619], +[-0.172158429111, -0.240787425965], +[-0.1668192160999, -0.2406870681474], +[-0.1614760822809, -0.2405901531893], +[-0.156129160745, -0.2404966545611], +[-0.1507785839331, -0.2404065468897], +[-0.1454244836582, -0.2403198059271], +[-0.1400669877356, -0.2402364085632], +[-0.1347062254088, -0.2401563353965], +[-0.1293423140054, -0.2400795761128], +[-0.1239754633956, -0.2400060619161], +[-0.11860570251, -0.239935828111], +[-0.1132331970471, -0.2398688375601], +[-0.1078580750244, -0.2398050731266], +[-0.1024804640035, -0.2397445185981], +[-0.09710049111219, -0.2396871586671], +[-0.09171828306603, -0.2396329789131], +[-0.08633396619012, -0.2395819657858], +[-0.08094766644083, -0.2395341065897], +[-0.07555950942753, -0.2394893894688], +[-0.07016962043432, -0.2394478033939], +[-0.06477812444176, -0.239409338149], +[-0.0593851461486, -0.2393739843206], +[-0.05399080999348, -0.2393417332864], +[-0.04859524017663, -0.2393125772058], +[-0.04319856068161, -0.2392865090112], +[-0.03780089529697, -0.2392635223998], +[-0.03240236763795, -0.2392436118268], +[-0.02700310116816, -0.239226772499], +[-0.02160321922123, -0.2392130003696], +[-0.01620284502253, -0.2392022921338], +[-0.0108021017108, -0.2391946452248], +[-0.005401112359804, -0.2391900578114], +[1.050972656336e-12, -0.2391885287956], +[0.005401112359805, -0.2391900578114], +[0.0108021017108, -0.2391946452248], +[0.01620284502253, -0.2392022921338], +[0.02160321922123, -0.2392130003696], +[0.02700310116816, -0.239226772499], +[0.03240236763795, -0.2392436118268], +[0.03780089529698, -0.2392635223998], +[0.04319856068161, -0.2392865090112], +[0.04859524017663, -0.2393125772058], +[0.05399080999348, -0.2393417332864], +[0.0593851461486, -0.2393739843206], +[0.06477812444176, -0.239409338149], +[0.07016962043432, -0.2394478033939], +[0.07555950942753, -0.2394893894688], +[0.08094766644083, -0.2395341065897], +[0.08633396619012, -0.2395819657858], +[0.09171828306603, -0.2396329789131], +[0.09710049111219, -0.2396871586671], +[0.1024804640035, -0.2397445185981], +[0.1078580750244, -0.2398050731266], +[0.1132331970471, -0.2398688375601], +[0.11860570251, -0.239935828111], +[0.1239754633956, -0.2400060619161], +[0.1293423140054, -0.2400795761128], +[0.1347062254088, -0.2401563353965], +[0.1400669877356, -0.2402364085632], +[0.1454244836583, -0.2403198059271], +[0.1507785839331, -0.2404065468897], +[0.156129160745, -0.2404966545611], +[0.1614760822809, -0.2405901531893], +[0.1668192160999, -0.2406870681474], +[0.172158429111, -0.240787425965], +[0.1774935875527, -0.2408912543619], +[0.1828245569716, -0.2409985822837], +[0.1881512022012, -0.2411094399389], +[0.1934733873415, -0.2412238588382], +[0.1987909757383, -0.2413418718362], +[0.2041038299624, -0.2414635131743], +[0.2094118117902, -0.2415888185271], +[0.2147147821831, -0.2417178250501], +[0.2200126012683, -0.2418505714308], +[0.2253051283196, -0.2419870979415], +[0.2305922217383, -0.2421274464958], +[0.2358737390354, -0.2422716607071], +[0.2411495368132, -0.242419785951], +[0.2464194707484, -0.2425718694301], +[0.2516833955753, -0.2427279602425], +[0.2569411650702, -0.2428881094544], +[0.2621926320361, -0.2430523701752], +[0.2674376482888, -0.2432207976375], +[0.2726760646435, -0.2433934492811], +[0.2779077309031, -0.2435703848409], +[0.2831324958476, -0.2437516664399], +[0.2883502072246, -0.2439373586868], +[0.293560711742, -0.2441275287789], +[0.2987638550618, -0.24432224661], +[0.3039594817965, -0.2445215848846], +[0.3091474355075, -0.2447256192376], +[0.3143275587055, -0.2449344283607], +[0.3194996928544, -0.2451480941353], +[0.3246636783779, -0.2453667017726], +[0.3298193546691, -0.2455903399616], +[0.3349665601044, -0.2458191010241], +[0.3401051320615, -0.246053081079], +[0.3452349069413, -0.2462923802152], +[0.3503557201962, -0.2465371026736], +[0.3554674063631, -0.2467873570394], +[0.3605697991026, -0.2470432564448], +[0.3656627312463, -0.2473049187823], +[0.3707460348508, -0.2475724669303], +[0.3758195412606, -0.2478460289912], +[0.3808830811809, -0.2481257385413], +[0.3859364847606, -0.248411734896], +[0.3909795816873, -0.2487041633885], +[0.3960122012952, -0.2490031756635], +[0.4010341726873, -0.2493089299884], +[0.406045324874, -0.2496215915793], +[0.4110454869291, -0.2499413329461], +[0.4160344881652, -0.2502683342557], +[0.4210121583317, -0.2506027837141], +[0.4259783278354, -0.250944877969], +[0.4309328279894, -0.2512948225332], +[0.43587549129, -0.2516528322295], +[0.4408061517268, -0.2520191316578], +[0.4457246451287, -0.2523939556854], +[0.4506308095491, -0.2527775499599], +[0.4555244856956, -0.2531701714466], +[0.4604055174068, -0.2535720889885], +[0.4652737521832, -0.2539835838906], +[0.4701290417752, -0.2544049505265], +[0.474971242836, -0.2548364969672], +[0.4798002176437, -0.2552785456302], +[0.4846158349003, -0.2557314339475], +[0.4894179706134, -0.2561955150484], +[0.4942065090692, -0.256671158455], +[0.498981343903, -0.2571587507844], +[0.5037423792751, -0.2576586964522], +[0.5084895311611, -0.2581714183699], +[0.5132227287626, -0.258697358627], +[0.5179419160467, -0.2592369791468], +[0.5226470534205, -0.2597907623019], +[0.5273381195463, -0.2603592114764], +[0.5320151133026, -0.2609428515523], +[0.5366780558911, -0.2615422293024], +[0.5413269930919, -0.2621579136629], +[0.54596199766, -0.2627904958588], +[0.5505831718569, -0.2634405893498], +[0.5551906501027, -0.2641088295635], +[0.5597846017276, -0.2647958733749], +[0.5643652337953, -0.2655023982989], +[0.5689327939637, -0.2662291013408], +[0.5734875733314, -0.2669766974793], +[0.5780299027814, -0.2677459152454], +[-0.57574075408, -0.2637810155721], +[-0.5711741804543, -0.2630103161547], +[-0.5665956597831, -0.2622607665932], +[-0.562004890708, -0.2615316741701], +[-0.557401597161, -0.2608223620357], +[-0.5527855430007, -0.2601321696936], +[-0.5481565295037, -0.2594604543768], +[-0.5435143928369, -0.2588065921054], +[-0.5388590015552, -0.2581699784483], +[-0.5341902541561, -0.2575500290301], +[-0.5295080767126, -0.2569461798142], +[-0.5248124206075, -0.2563578871964], +[-0.5201032603772, -0.2557846279359], +[-0.5153805916767, -0.2552258989529], +[-0.5106444293694, -0.2546812170143], +[-0.5058948057411, -0.2541501183324], +[-0.5011317688411, -0.2536321580919], +[-0.4963553809436, -0.2531269099236], +[-0.4915657171282, -0.2526339653378], +[-0.4867628639731, -0.2521529331306], +[-0.4819469183544, -0.2516834387709], +[-0.4771179863478, -0.251225123779], +[-0.4722761822228, -0.2507776451024], +[-0.4674216275269, -0.2503406744938], +[-0.4625544502498, -0.2499138978982], +[-0.4576747840644, -0.2494970148502], +[-0.4527827676367, -0.2490897378853], +[-0.4478785440002, -0.2486917919688], +[-0.4429622599886, -0.2483029139408], +[-0.438034065723, -0.2479228519818], +[-0.433094114148, -0.2475513650969], +[-0.4281425606122, -0.247188222621], +[-0.4231795624906, -0.2468332037433], +[-0.4182052788437, -0.2464860970531], +[-0.4132198701105, -0.246146700105], +[-0.4082234978325, -0.2458148190034], +[-0.4032163244058, -0.2454902680072], +[-0.3981985128586, -0.2451728691519], +[-0.3931702266517, -0.2448624518903], +[-0.3881316294997, -0.2445588527508], +[-0.3830828852118, -0.244261915012], +[-0.3780241575496, -0.2439714883932], +[-0.3729556100997, -0.2436874287606], +[-0.3678774061621, -0.243409597848], +[-0.3627897086495, -0.2431378629915], +[-0.3576926799996, -0.2428720968774], +[-0.3525864820977, -0.2426121773028], +[-0.3474712762077, -0.2423579869486], +[-0.3423472229135, -0.2421094131634], +[-0.3372144820665, -0.2418663477588], +[-0.3320732127414, -0.2416286868147], +[-0.3269235731976, -0.2413963304948], +[-0.3217657208471, -0.2411691828704], +[-0.3165998122266, -0.2409471517548], +[-0.3114260029756, -0.240730148544], +[-0.3062444478178, -0.2405180880671], +[-0.3010553005468, -0.2403108884428], +[-0.2958587140152, -0.2401084709444], +[-0.2906548401271, -0.2399107598701], +[-0.2854438298331, -0.2397176824208], +[-0.280225833128, -0.2395291685837], +[-0.2750009990515, -0.2393451510213], +[-0.2697694756895, -0.239165564966], +[-0.2645314101793, -0.2389903481204], +[-0.2592869487147, -0.2388194405618], +[-0.2540362365539, -0.2386527846516], +[-0.2487794180284, -0.2384903249493], +[-0.2435166365528, -0.2383320081306], +[-0.2382480346365, -0.2381777829093], +[-0.2329737538957, -0.2380275999633], +[-0.2276939350671, -0.2378814118642], +[-0.2224087180216, -0.2377391730096], +[-0.2171182417794, -0.2376008395599], +[-0.2118226445254, -0.2374663693774], +[-0.2065220636257, -0.237335721968], +[-0.201216635644, -0.2372088584269], +[-0.1959064963587, -0.2370857413859], +[-0.190591780781, -0.2369663349636], +[-0.1852726231728, -0.2368506047183], +[-0.1799491570648, -0.2367385176029], +[-0.1746215152756, -0.2366300419219], +[-0.1692898299305, -0.2365251472913], +[-0.1639542324809, -0.2364238045992], +[-0.1586148537239, -0.2363259859698], +[-0.1532718238214, -0.2362316647282], +[-0.1479252723208, -0.2361408153674], +[-0.1425753272634, -0.2360534116251], +[-0.1372221149306, -0.2359694300111], +[-0.1318657529563, -0.2358888432736], +[-0.1265063291396, -0.23581162158], +[-0.1211441844906, -0.235737831965], +[-0.1157791919985, -0.2356673398922], +[-0.1104115692197, -0.2356001714153], +[-0.1050414415132, -0.2355363093708], +[-0.09966893380707, -0.2354757375342], +[-0.09429417061949, -0.2354184406019], +[-0.0889172760795, -0.2353644041731], +[-0.08353837394796, -0.2353136147336], +[-0.07815758763846, -0.2352660596405], +[-0.07277504023824, -0.2352217271076], +[-0.06739085452925, -0.2351806061925], +[-0.06200515300909, -0.2351426867842], +[-0.05661805791203, -0.2351079595916], +[-0.05122969123008, -0.2350764161335], +[-0.04584017473397, -0.2350480487292], +[-0.04044962999425, -0.2350228504895], +[-0.03505817840233, -0.2350008153099], +[-0.02966594119154, -0.2349819378633], +[-0.0242730394582, -0.2349662135944], +[-0.01887959418271, -0.2349536387146], +[-0.01348572625057, -0.2349442101981], +[-0.008091556473544, -0.2349379257784], +[-0.00269720561066, -0.2349347839457], +[0.002697205610662, -0.2349347839457], +[0.008091556473545, -0.2349379257784], +[0.01348572625057, -0.2349442101981], +[0.01887959418271, -0.2349536387146], +[0.02427303945821, -0.2349662135944], +[0.02966594119154, -0.2349819378633], +[0.03505817840233, -0.2350008153099], +[0.04044962999425, -0.2350228504895], +[0.04584017473397, -0.2350480487292], +[0.05122969123008, -0.2350764161335], +[0.05661805791204, -0.2351079595916], +[0.06200515300909, -0.2351426867842], +[0.06739085452925, -0.2351806061925], +[0.07277504023824, -0.2352217271076], +[0.07815758763846, -0.2352660596405], +[0.08353837394796, -0.2353136147336], +[0.0889172760795, -0.2353644041731], +[0.09429417061949, -0.2354184406019], +[0.09966893380707, -0.2354757375342], +[0.1050414415132, -0.2355363093708], +[0.1104115692197, -0.2356001714153], +[0.1157791919985, -0.2356673398922], +[0.1211441844906, -0.235737831965], +[0.1265063291396, -0.23581162158], +[0.1318657529563, -0.2358888432736], +[0.1372221149306, -0.2359694300111], +[0.1425753272634, -0.2360534116251], +[0.1479252723208, -0.2361408153674], +[0.1532718238214, -0.2362316647282], +[0.1586148537239, -0.2363259859698], +[0.1639542324809, -0.2364238045992], +[0.1692898299305, -0.2365251472913], +[0.1746215152756, -0.2366300419219], +[0.1799491570648, -0.2367385176029], +[0.1852726231728, -0.2368506047183], +[0.190591780781, -0.2369663349636], +[0.1959064963587, -0.2370857413859], +[0.201216635644, -0.2372088584269], +[0.2065220636257, -0.237335721968], +[0.2118226445254, -0.2374663693774], +[0.2171182417794, -0.2376008395599], +[0.2224087180216, -0.2377391730096], +[0.2276939350671, -0.2378814118642], +[0.2329737538957, -0.2380275999633], +[0.2382480346365, -0.2381777829093], +[0.2435166365528, -0.2383320081306], +[0.2487794180284, -0.2384903249493], +[0.2540362365539, -0.2386527846516], +[0.2592869487147, -0.2388194405618], +[0.2645314101793, -0.2389903481204], +[0.2697694756895, -0.239165564966], +[0.2750009990515, -0.2393451510213], +[0.280225833128, -0.2395291685837], +[0.2854438298331, -0.2397176824208], +[0.2906548401271, -0.2399107598701], +[0.2958587140152, -0.2401084709444], +[0.3010553005468, -0.2403108884428], +[0.3062444478178, -0.2405180880671], +[0.3114260029756, -0.240730148544], +[0.3165998122266, -0.2409471517548], +[0.3217657208471, -0.2411691828704], +[0.3269235731976, -0.2413963304948], +[0.3320732127414, -0.2416286868147], +[0.3372144820665, -0.2418663477588], +[0.3423472229135, -0.2421094131634], +[0.3474712762077, -0.2423579869486], +[0.3525864820977, -0.2426121773028], +[0.3576926799997, -0.2428720968774], +[0.3627897086495, -0.2431378629915], +[0.3678774061621, -0.243409597848], +[0.3729556100997, -0.2436874287606], +[0.3780241575496, -0.2439714883932], +[0.3830828852118, -0.244261915012], +[0.3881316294997, -0.2445588527508], +[0.3931702266517, -0.2448624518903], +[0.3981985128586, -0.2451728691519], +[0.4032163244058, -0.2454902680072], +[0.4082234978325, -0.2458148190034], +[0.4132198701105, -0.246146700105], +[0.4182052788437, -0.2464860970531], +[0.4231795624906, -0.2468332037433], +[0.4281425606122, -0.247188222621], +[0.433094114148, -0.2475513650969], +[0.438034065723, -0.2479228519818], +[0.4429622599886, -0.2483029139408], +[0.4478785440002, -0.2486917919688], +[0.4527827676367, -0.2490897378853], +[0.4576747840644, -0.2494970148502], +[0.4625544502498, -0.2499138978982], +[0.4674216275268, -0.2503406744938], +[0.4722761822228, -0.2507776451023], +[0.4771179863478, -0.251225123779], +[0.4819469183544, -0.2516834387709], +[0.4867628639731, -0.2521529331306], +[0.4915657171282, -0.2526339653378], +[0.4963553809436, -0.2531269099236], +[0.5011317688411, -0.2536321580919], +[0.5058948057411, -0.2541501183324], +[0.5106444293694, -0.2546812170143], +[0.5153805916767, -0.2552258989528], +[0.5201032603771, -0.255784627936], +[0.5248124206075, -0.2563578871964], +[0.5295080767126, -0.2569461798142], +[0.5341902541561, -0.2575500290301], +[0.5388590015552, -0.2581699784483], +[0.5435143928369, -0.2588065921054], +[0.5481565295037, -0.2594604543768], +[0.5527855430007, -0.2601321696936], +[0.5574015971608, -0.260822362036], +[0.5620048907083, -0.2615316741693], +[0.5665956597832, -0.262260766593], +[0.5711741804543, -0.2630103161549], +[0.5757407536141, -0.2637810174559], +[-0.5734372627692, -0.2597912918227], +[-0.5688473090893, -0.2590193467489], +[-0.5642458840406, -0.2582681198273], +[-0.5596327166873, -0.2575369367711], +[-0.5550075450177, -0.2568251557317], +[-0.5503701438052, -0.2561321497901], +[-0.5457203223867, -0.2554573082112], +[-0.5410579224225, -0.2548000374154], +[-0.5363828156719, -0.2541597616944], +[-0.5316949018111, -0.2535359237018], +[-0.5269941063171, -0.2529279847448], +[-0.5222803784324, -0.2523354249064], +[-0.5175536892227, -0.2517577430216], +[-0.5128140297361, -0.2511944565304], +[-0.5080614092681, -0.2506451012305], +[-0.5032958537337, -0.2501092309462], +[-0.4985174041488, -0.2495864171301], +[-0.4937261152164, -0.2490762484144], +[-0.4889220540163, -0.2485783301207], +[-0.4841052987942, -0.2480922837424], +[-0.4792759378451, -0.2476177464064], +[-0.4744340684868, -0.2471543703233], +[-0.4695797961169, -0.2467018222318], +[-0.4647132333498, -0.2462597828432], +[-0.459834499227, -0.2458279462898], +[-0.4549437184958, -0.2454060195811], +[-0.450041020952, -0.2449937220705], +[-0.4451265408404, -0.244590784935], +[-0.4402004163104, -0.2441969506688], +[-0.4352627889203, -0.2438119725932], +[-0.4303138031884, -0.2434356143826], +[-0.4253536061845, -0.2430676496076], +[-0.4203823471608, -0.2427078612958], +[-0.4154001772176, -0.2423560415098], +[-0.4104072490007, -0.2420119909429], +[-0.4054037164283, -0.2416755185318], +[-0.4003897344441, -0.2413464410866], +[-0.3953654587955, -0.2410245829368], +[-0.3903310458326, -0.2407097755943], +[-0.3852866523288, -0.2404018574306], +[-0.3802324353187, -0.240100673371], +[-0.3751685519529, -0.2398060746012], +[-0.3700951593682, -0.2395179182896], +[-0.3650124145713, -0.2392360673219], +[-0.3599204743355, -0.2389603900491], +[-0.3548194951078, -0.2386907600474], +[-0.3497096329279, -0.2384270558901], +[-0.3445910433549, -0.2381691609304], +[-0.339463881404, -0.237916963095], +[-0.33432830149, -0.2376703546874], +[-0.3291844573787, -0.2374292322021], +[-0.3240325021437, -0.237193496146], +[-0.3188725881301, -0.2369630508703], +[-0.3137048669229, -0.2367378044099], +[-0.30852948932, -0.2365176683304], +[-0.3033466053104, -0.2363025575833], +[-0.2981563640557, -0.2360923903676], +[-0.2929589138754, -0.2358870879989], +[-0.2877544022353, -0.2356865747839], +[-0.2825429757395, -0.235490777902], +[-0.2773247801245, -0.2352996272922], +[-0.2720999602558, -0.2351130555453], +[-0.2668686601272, -0.2349309978016], +[-0.2616310228616, -0.2347533916536], +[-0.2563871907139, -0.2345801770533], +[-0.2511373050757, -0.2344112962236], +[-0.2458815064813, -0.234246693575], +[-0.240619934615, -0.2340863156248], +[-0.2353527283201, -0.2339301109217], +[-0.2300800256087, -0.233778029973], +[-0.2248019636723, -0.2336300251758], +[-0.2195186788939, -0.2334860507511], +[-0.2142303068608, -0.2333460626817], +[-0.2089369823775, -0.2332100186521], +[-0.2036388394806, -0.2330778779927], +[-0.1983360114528, -0.2329496016252], +[-0.193028630839, -0.2328251520117], +[-0.1877168294617, -0.2327044931055], +[-0.1824007384373, -0.2325875903054], +[-0.1770804881934, -0.2324744104106], +[-0.1717562084853, -0.2323649215796], +[-0.166428028414, -0.2322590932896], +[-0.1610960764439, -0.2321568962991], +[-0.1557604804206, -0.2320583026113], +[-0.1504213675898, -0.2319632854406], +[-0.1450788646155, -0.2318718191793], +[-0.13973310029, -0.2317838755239], +[-0.1343841978975, -0.231699427253], +[-0.1290322798185, -0.2316184282008], +[-0.1236774383996, -0.231540776254], +[-0.11831989251, -0.2314669339867], +[-0.1129596784449, -0.231396297727], +[-0.1075969462027, -0.2313290637245], +[-0.1022318184857, -0.2312652148169], +[-0.09686441758971, -0.2312047347957], +[-0.09149486542338, -0.2311476083882], +[-0.08612328352869, -0.2310938212403], +[-0.08074979310085, -0.2310433599], +[-0.07537451500851, -0.2309962118032], +[-0.06999756981396, -0.2309523652589], +[-0.06461907779337, -0.2309118094371], +[-0.05923915895714, -0.2308745343562], +[-0.05385793307014, -0.2308405308725], +[-0.04847551967217, -0.2308097906704], +[-0.04309203809825, -0.2307823062526], +[-0.03770760749913, -0.2307580709328], +[-0.03232234686163, -0.2307370788282], +[-0.02693637502915, -0.2307193248527], +[-0.02154981072213, -0.2307048047123], +[-0.01616277255848, -0.2306935148998], +[-0.01077537907414, -0.2306854526911], +[-0.005387748743516, -0.2306806161428], +[-2.054111582487e-14, -0.2306790040894], +[0.005387748743518, -0.2306806161428], +[0.01077537907414, -0.2306854526911], +[0.01616277255848, -0.2306935148998], +[0.02154981072213, -0.2307048047123], +[0.02693637502915, -0.2307193248527], +[0.03232234686163, -0.2307370788282], +[0.03770760749913, -0.2307580709328], +[0.04309203809826, -0.2307823062526], +[0.04847551967217, -0.2308097906704], +[0.05385793307014, -0.2308405308725], +[0.05923915895714, -0.2308745343562], +[0.06461907779338, -0.2309118094371], +[0.06999756981396, -0.2309523652589], +[0.07537451500851, -0.2309962118032], +[0.08074979310085, -0.2310433599], +[0.08612328352869, -0.2310938212403], +[0.09149486542338, -0.2311476083882], +[0.09686441758971, -0.2312047347957], +[0.1022318184857, -0.2312652148169], +[0.1075969462027, -0.2313290637245], +[0.1129596784449, -0.231396297727], +[0.11831989251, -0.2314669339867], +[0.1236774383996, -0.231540776254], +[0.1290322798185, -0.2316184282008], +[0.1343841978975, -0.231699427253], +[0.13973310029, -0.2317838755239], +[0.1450788646155, -0.2318718191793], +[0.1504213675898, -0.2319632854406], +[0.1557604804206, -0.2320583026113], +[0.1610960764439, -0.2321568962991], +[0.166428028414, -0.2322590932896], +[0.1717562084853, -0.2323649215796], +[0.1770804881934, -0.2324744104106], +[0.1824007384373, -0.2325875903054], +[0.1877168294617, -0.2327044931055], +[0.193028630839, -0.2328251520117], +[0.1983360114528, -0.2329496016252], +[0.2036388394806, -0.2330778779927], +[0.2089369823775, -0.2332100186521], +[0.2142303068608, -0.2333460626817], +[0.2195186788939, -0.2334860507511], +[0.2248019636723, -0.2336300251758], +[0.2300800256087, -0.233778029973], +[0.2353527283201, -0.2339301109217], +[0.240619934615, -0.2340863156248], +[0.2458815064813, -0.234246693575], +[0.2511373050757, -0.2344112962236], +[0.2563871907139, -0.2345801770533], +[0.2616310228616, -0.2347533916536], +[0.2668686601272, -0.2349309978016], +[0.2720999602558, -0.2351130555453], +[0.2773247801245, -0.2352996272922], +[0.2825429757395, -0.235490777902], +[0.2877544022353, -0.2356865747839], +[0.2929589138754, -0.2358870879989], +[0.2981563640557, -0.2360923903676], +[0.3033466053104, -0.2363025575833], +[0.30852948932, -0.2365176683304], +[0.3137048669229, -0.2367378044099], +[0.3188725881301, -0.2369630508703], +[0.3240325021437, -0.237193496146], +[0.3291844573787, -0.2374292322021], +[0.33432830149, -0.2376703546874], +[0.3394638814039, -0.237916963095], +[0.3445910433549, -0.2381691609304], +[0.3497096329279, -0.2384270558901], +[0.3548194951078, -0.2386907600474], +[0.3599204743355, -0.2389603900491], +[0.3650124145713, -0.2392360673219], +[0.3700951593682, -0.2395179182896], +[0.3751685519529, -0.2398060746012], +[0.3802324353187, -0.240100673371], +[0.3852866523288, -0.2404018574306], +[0.3903310458326, -0.2407097755943], +[0.3953654587955, -0.2410245829368], +[0.4003897344441, -0.2413464410866], +[0.4054037164283, -0.2416755185318], +[0.4104072490007, -0.2420119909429], +[0.4154001772176, -0.2423560415098], +[0.4203823471608, -0.2427078612958], +[0.4253536061845, -0.2430676496076], +[0.4303138031884, -0.2434356143826], +[0.4352627889204, -0.2438119725932], +[0.4402004163104, -0.2441969506688], +[0.4451265408404, -0.244590784935], +[0.450041020952, -0.2449937220705], +[0.4549437184958, -0.2454060195811], +[0.459834499227, -0.2458279462898], +[0.4647132333498, -0.2462597828432], +[0.4695797961169, -0.2467018222318], +[0.4744340684868, -0.2471543703233], +[0.4792759378451, -0.2476177464064], +[0.4841052987942, -0.2480922837424], +[0.4889220540163, -0.2485783301207], +[0.4937261152164, -0.2490762484144], +[0.4985174041488, -0.2495864171301], +[0.5032958537337, -0.2501092309462], +[0.5080614092681, -0.2506451012305], +[0.5128140297362, -0.2511944565304], +[0.5175536892227, -0.2517577430215], +[0.5222803784324, -0.2523354249064], +[0.5269941063171, -0.2529279847448], +[0.5316949018111, -0.2535359237018], +[0.5363828156719, -0.2541597616944], +[0.5410579224225, -0.2548000374154], +[0.5457203223867, -0.2554573082112], +[0.5503701438052, -0.2561321497901], +[0.5550075450178, -0.2568251557316], +[0.5596327166874, -0.2575369367708], +[0.5642458840407, -0.2582681198269], +[0.5688473090893, -0.259019346749], +[0.5734372623718, -0.259791293512], +[-0.5711198735596, -0.2557773848871], +[-0.5665073153328, -0.2550044712719], +[-0.5618837816631, -0.2542518310326], +[-0.5572489878157, -0.2535188422775], +[-0.5526026849394, -0.2528048953749], +[-0.547944658149, -0.2521093943676], +[-0.5432747245524, -0.2514317581172], +[-0.538592731257, -0.250771421199], +[-0.5338985533859, -0.2501278345733], +[-0.5291920921264, -0.2495004660562], +[-0.5244732728319, -0.2488888006154], +[-0.5197420431899, -0.248292340512], +[-0.5149983714682, -0.2477106053126], +[-0.5102422448466, -0.2471431317874], +[-0.5054736678387, -0.2465894737175], +[-0.5006926608062, -0.2460492016228], +[-0.4958992585665, -0.2455219024282], +[-0.4910935090929, -0.2450071790795], +[-0.4862754723045, -0.2445046501204], +[-0.4814452189435, -0.2440139492405], +[-0.476602829537, -0.2435347248023], +[-0.4717483934371, -0.2430666393543], +[-0.466882007938, -0.2426093691368], +[-0.4620037774628, -0.2421626035843], +[-0.4571138128178, -0.2417260448297], +[-0.4522122305086, -0.2412994072132], +[-0.447299152114, -0.2408824167986], +[-0.4423747037133, -0.2404748108995], +[-0.437439015364, -0.2400763376171], +[-0.4324922206249, -0.2396867553903], +[-0.4275344561213, -0.2393058325603], +[-0.4225658611495, -0.2389333469489], +[-0.4175865773169, -0.238569085452], +[-0.4125967482151, -0.2382128436487], +[-0.4075965191226, -0.2378644254246], +[-0.4025860367359, -0.2375236426109], +[-0.3975654489251, -0.2371903146387], +[-0.392534904513, -0.2368642682072], +[-0.3874945530749, -0.236545336967], +[-0.3824445447585, -0.236233361217], +[-0.3773850301206, -0.2359281876152], +[-0.3723161599801, -0.2356296689022], +[-0.3672380852853, -0.2353376636385], +[-0.3621509569986, -0.2350520359512], +[-0.3570549259825, -0.2347726552974], +[-0.3519501429118, -0.2344993962333], +[-0.3468367581842, -0.2342321381978], +[-0.3417149218457, -0.2339707653052], +[-0.3365847835225, -0.2337151661476], +[-0.3314464923614, -0.2334652336072], +[-0.3263001969772, -0.2332208646772], +[-0.3211460454062, -0.2329819602914], +[-0.3159841850658, -0.2327484251618], +[-0.3108147627192, -0.2325201676246], +[-0.3056379244455, -0.2322970994924], +[-0.3004538156132, -0.2320791359151], +[-0.2952625808594, -0.2318661952455], +[-0.2900643640707, -0.2316581989133], +[-0.2848593083691, -0.2314550713036], +[-0.2796475561004, -0.2312567396424], +[-0.2744292488248, -0.2310631338861], +[-0.2692045273113, -0.230874186618], +[-0.2639735315333, -0.2306898329486], +[-0.2587364006668, -0.2305100104205], +[-0.2534932730911, -0.2303346589191], +[-0.2482442863897, -0.2301637205858], +[-0.2429895773547, -0.2299971397368], +[-0.2377292819915, -0.2298348627849], +[-0.2324635355248, -0.2296768381654], +[-0.2271924724069, -0.2295230162655], +[-0.2219162263256, -0.2293733493566], +[-0.2166349302144, -0.2292277915305], +[-0.2113487162631, -0.2290862986383], +[-0.2060577159291, -0.228948828232], +[-0.2007620599498, -0.2288153395092], +[-0.1954618783556, -0.2286857932607], +[-0.1901573004835, -0.2285601518197], +[-0.1848484549912, -0.2284383790145], +[-0.1795354698723, -0.2283204401225], +[-0.1742184724708, -0.2282063018278], +[-0.1688975894974, -0.2280959321789], +[-0.1635729470456, -0.2279893005506], +[-0.1582446706077, -0.2278863776063], +[-0.1529128850921, -0.2277871352626], +[-0.14757771484, -0.227691546656], +[-0.1422392836434, -0.2275995861111], +[-0.1368977264501, -0.2275112292467], +[-0.1315531710038, -0.2274264445483], +[-0.1262057870075, -0.2273451785157], +[-0.1208558304184, -0.2272672651243], +[-0.115502509979, -0.2271933851511], +[-0.11014708422, -0.2271227167049], +[-0.1047892501817, -0.2270555275095], +[-0.09942912791236, -0.226991800431], +[-0.09406683707656, -0.2269315193042], +[-0.08870249697423, -0.2268746689138], +[-0.08333622655996, -0.2268212349784], +[-0.07796814446231, -0.2267712041345], +[-0.07259836900322, -0.2267245639217], +[-0.06722701821751, -0.2266813027698], +[-0.06185420987241, -0.2266414099855], +[-0.05648006148719, -0.2266048757415], +[-0.0511046903528, -0.2265716910657], +[-0.04572821355163, -0.2265418478314], +[-0.04035074797718, -0.2265153387493], +[-0.03497241035392, -0.2264921573589], +[-0.02959331725706, -0.2264722980224], +[-0.0242135851324, -0.226455755918], +[-0.01883333031626, -0.2264425270357], +[-0.01345266905529, -0.2264326081723], +[-0.008071717526389, -0.2264259969285], +[-0.002690591856669, -0.2264226917059], +[0.00269059185667, -0.2264226917059], +[0.008071717526389, -0.2264259969285], +[0.01345266905529, -0.2264326081723], +[0.01883333031626, -0.2264425270357], +[0.0242135851324, -0.226455755918], +[0.02959331725705, -0.2264722980223], +[0.03497241035392, -0.2264921573589], +[0.04035074797718, -0.2265153387493], +[0.04572821355163, -0.2265418478314], +[0.05110469035281, -0.2265716910657], +[0.05648006148719, -0.2266048757415], +[0.06185420987241, -0.2266414099855], +[0.06722701821751, -0.2266813027698], +[0.07259836900323, -0.2267245639217], +[0.07796814446231, -0.2267712041345], +[0.08333622655996, -0.2268212349784], +[0.08870249697423, -0.2268746689138], +[0.09406683707656, -0.2269315193042], +[0.09942912791236, -0.226991800431], +[0.1047892501817, -0.2270555275095], +[0.11014708422, -0.2271227167049], +[0.115502509979, -0.2271933851511], +[0.1208558304184, -0.2272672651243], +[0.1262057870075, -0.2273451785157], +[0.1315531710038, -0.2274264445483], +[0.1368977264501, -0.2275112292467], +[0.1422392836434, -0.2275995861111], +[0.14757771484, -0.227691546656], +[0.1529128850921, -0.2277871352626], +[0.1582446706077, -0.2278863776063], +[0.1635729470456, -0.2279893005506], +[0.1688975894974, -0.2280959321789], +[0.1742184724708, -0.2282063018278], +[0.1795354698723, -0.2283204401225], +[0.1848484549912, -0.2284383790145], +[0.1901573004835, -0.2285601518197], +[0.1954618783556, -0.2286857932607], +[0.2007620599498, -0.2288153395092], +[0.2060577159291, -0.228948828232], +[0.2113487162631, -0.2290862986383], +[0.2166349302144, -0.2292277915305], +[0.2219162263256, -0.2293733493566], +[0.2271924724069, -0.2295230162655], +[0.2324635355248, -0.2296768381654], +[0.2377292819915, -0.2298348627849], +[0.2429895773547, -0.2299971397368], +[0.2482442863897, -0.2301637205858], +[0.2534932730911, -0.2303346589191], +[0.2587364006668, -0.2305100104205], +[0.2639735315333, -0.2306898329486], +[0.2692045273113, -0.230874186618], +[0.2744292488248, -0.2310631338861], +[0.2796475561004, -0.2312567396424], +[0.2848593083691, -0.2314550713036], +[0.2900643640707, -0.2316581989133], +[0.2952625808594, -0.2318661952455], +[0.3004538156132, -0.2320791359151], +[0.3056379244455, -0.2322970994924], +[0.3108147627192, -0.2325201676246], +[0.3159841850658, -0.2327484251618], +[0.3211460454062, -0.2329819602914], +[0.3263001969772, -0.2332208646772], +[0.3314464923614, -0.2334652336072], +[0.3365847835225, -0.2337151661476], +[0.3417149218457, -0.2339707653052], +[0.3468367581842, -0.2342321381978], +[0.3519501429118, -0.2344993962333], +[0.3570549259825, -0.2347726552974], +[0.3621509569986, -0.2350520359512], +[0.3672380852859, -0.2353376636383], +[0.3723161599801, -0.2356296689022], +[0.3773850301206, -0.2359281876152], +[0.3824445447585, -0.236233361217], +[0.3874945530749, -0.236545336967], +[0.392534904513, -0.2368642682072], +[0.3975654489251, -0.2371903146387], +[0.4025860367359, -0.2375236426109], +[0.4075965191226, -0.2378644254246], +[0.4125967482151, -0.2382128436487], +[0.4175865773169, -0.238569085452], +[0.4225658611495, -0.2389333469489], +[0.4275344561213, -0.2393058325603], +[0.4324922206249, -0.2396867553903], +[0.437439015364, -0.2400763376171], +[0.4423747037133, -0.2404748108995], +[0.447299152114, -0.2408824167986], +[0.4522122305087, -0.2412994072132], +[0.4571138128178, -0.2417260448297], +[0.4620037774628, -0.2421626035843], +[0.466882007938, -0.2426093691368], +[0.4717483934371, -0.2430666393543], +[0.476602829537, -0.2435347248023], +[0.4814452189436, -0.2440139492405], +[0.4862754723045, -0.2445046501204], +[0.4910935090929, -0.2450071790795], +[0.4958992585665, -0.2455219024282], +[0.5006926608062, -0.2460492016228], +[0.5054736678387, -0.2465894737175], +[0.5102422448466, -0.2471431317874], +[0.5149983714682, -0.2477106053125], +[0.5197420431899, -0.248292340512], +[0.524473272832, -0.2488888006153], +[0.5291920921264, -0.2495004660562], +[0.5338985533859, -0.2501278345733], +[0.538592731257, -0.250771421199], +[0.5432747245524, -0.2514317581172], +[0.547944658149, -0.2521093943676], +[0.5526026849394, -0.2528048953749], +[0.5572489878158, -0.2535188422774], +[0.5618837816631, -0.2542518310325], +[0.5665073153328, -0.255004471272], +[0.5711198735596, -0.2557773848871], +[-0.5687882113906, -0.251739771224], +[-0.5641545389669, -0.2509663380585], +[-0.559509654618, -0.2502125375682], +[-0.5548539703028, -0.2494780154663], +[-0.5501872495065, -0.2487621918479], +[-0.5455092871429, -0.2480644993734], +[-0.5408199077962, -0.2473843843127], +[-0.5361189639419, -0.2467213073707], +[-0.5314063341714, -0.2460747443149], +[-0.5266819214426, -0.2454441864267], +[-0.5219456513722, -0.2448291407948], +[-0.517197470583, -0.2442291304733], +[-0.5124373451176, -0.2436436945181], +[-0.5076652589228, -0.2430723879253], +[-0.5028812124123, -0.2425147814805], +[-0.4980852211083, -0.2419704615383], +[-0.493277314364, -0.2414390297417], +[-0.4884575341668, -0.2409201026947], +[-0.4836259340205, -0.2404133115963], +[-0.4787825779042, -0.2399183018458], +[-0.4739275393055, -0.2394347326273], +[-0.4690609003247, -0.238962276478], +[-0.4641827508465, -0.2385006188477], +[-0.4592931877757, -0.2380494576537], +[-0.4543923143327, -0.2376085028347], +[-0.4494802394055, -0.2371774759063], +[-0.4445570769543, -0.236756109523], +[-0.4396229454657, -0.2363441470462], +[-0.4346779674515, -0.2359413421217], +[-0.4297222689908, -0.2355474582677], +[-0.4247559793109, -0.2351622684737], +[-0.4197792304038, -0.2347855548117], +[-0.4147921566774, -0.2344171080604], +[-0.4097948946356, -0.234056727342], +[-0.4047875825887, -0.2337042197722], +[-0.3997703603882, -0.2333594001239], +[-0.3947433691861, -0.2330220905035], +[-0.3897067512167, -0.2326921200408], +[-0.3846606495973, -0.2323693245912], +[-0.3796052081482, -0.232053546451], +[-0.3745405712296, -0.2317446340843], +[-0.3694668835939, -0.2314424418626], +[-0.3643842902514, -0.2311468298152], +[-0.3592929363504, -0.2308576633911], +[-0.3541929670681, -0.2305748132314], +[-0.3490845275129, -0.2302981549526], +[-0.3439677626363, -0.230027568939], +[-0.3388428171542, -0.229762940145], +[-0.3337098354763, -0.2295041579072], +[-0.3285689616435, -0.2292511157636], +[-0.323420339272, -0.2290037112832], +[-0.3182641115036, -0.2287618459018], +[-0.3131004209622, -0.2285254247667], +[-0.3079294097155, -0.2282943565876], +[-0.3027512192417, -0.2280685534957], +[-0.2975659904002, -0.2278479309083], +[-0.2923738634074, -0.2276324074005], +[-0.2871749778149, -0.2274219045822], +[-0.2819694724923, -0.2272163469816], +[-0.2767574856128, -0.2270156619339], +[-0.2715391546411, -0.2268197794747], +[-0.2663146163244, -0.2266286322395], +[-0.2610840066866, -0.2264421553666], +[-0.255847461023, -0.2262602864059], +[-0.2506051138984, -0.2260829652304], +[-0.2453570991464, -0.2259101339537], +[-0.2401035498707, -0.2257417368496], +[-0.2348445984477, -0.2255777202768], +[-0.2295803765311, -0.2254180326063], +[-0.2243110150566, -0.2252626241524], +[-0.2190366442496, -0.2251114471076], +[-0.2137573936313, -0.2249644554791], +[-0.2084733920299, -0.2248216050303], +[-0.203184767588, -0.224682853223], +[-0.1978916477744, -0.2245481591637], +[-0.1925941593951, -0.2244174835523], +[-0.1872924286052, -0.2242907886324], +[-0.1819865809218, -0.2241680381452], +[-0.176676741237, -0.2240491972846], +[-0.171363033832, -0.2239342326548], +[-0.1660455823913, -0.2238231122306], +[-0.1607245100174, -0.2237158053183], +[-0.1553999392462, -0.22361228252], +[-0.1500719920625, -0.2235125156986], +[-0.1447407899157, -0.223416477945], +[-0.1394064537366, -0.2233241435471], +[-0.1340691194617, -0.2232355082207], +[-0.1287289293617, -0.2231505484333], +[-0.1233861279449, -0.2230692920305], +[-0.1180413043489, -0.2229918079571], +[-0.1126919607195, -0.2229172021544], +[-0.1073413329547, -0.2228466114276], +[-0.1019884045679, -0.2227795752895], +[-0.09663329295585, -0.222716076662], +[-0.09127611515364, -0.222656099449], +[-0.08591698785334, -0.2225996285191], +[-0.08055602742229, -0.2225466496893], +[-0.07519334992169, -0.2224971497094], +[-0.06982907112536, -0.2224511162482], +[-0.06446330653851, -0.2224085378803], +[-0.05909617141655, -0.2223694040739], +[-0.05372778078414, -0.2223337051798], +[-0.0483582494541, -0.2223014324211], +[-0.04298769204655, -0.222272577884], +[-0.03761622300803, -0.2222471345099], +[-0.03224395663063, -0.2222250960875], +[-0.02687100707126, -0.2222064572468], +[-0.02149748837086, -0.2221912134532], +[-0.01612351447372, -0.2221793610029], +[-0.01074919924673, -0.2221708970193], +[-0.005374656498771, -0.2221658194495], +[-1.901565931633e-13, -0.222164127063], +[0.005374656498772, -0.2221658194495], +[0.01074919924673, -0.2221708970193], +[0.01612351447372, -0.2221793610029], +[0.02149748837087, -0.2221912134532], +[0.02687100707126, -0.2222064572468], +[0.03224395663063, -0.2222250960875], +[0.03761622300803, -0.2222471345099], +[0.04298769204656, -0.222272577884], +[0.0483582494541, -0.2223014324211], +[0.05372778078414, -0.2223337051798], +[0.05909617141655, -0.2223694040739], +[0.06446330653848, -0.2224085378803], +[0.06982907112537, -0.2224511162482], +[0.07519334992169, -0.2224971497094], +[0.08055602742229, -0.2225466496893], +[0.08591698785335, -0.2225996285191], +[0.09127611515364, -0.222656099449], +[0.09663329295585, -0.222716076662], +[0.1019884045679, -0.2227795752895], +[0.1073413329547, -0.2228466114276], +[0.1126919607195, -0.2229172021544], +[0.1180413043489, -0.2229918079571], +[0.1233861279449, -0.2230692920305], +[0.1287289293617, -0.2231505484333], +[0.1340691194617, -0.2232355082207], +[0.1394064537366, -0.2233241435471], +[0.1447407899157, -0.223416477945], +[0.1500719920625, -0.2235125156986], +[0.1553999392463, -0.22361228252], +[0.1607245100174, -0.2237158053183], +[0.1660455823913, -0.2238231122306], +[0.171363033832, -0.2239342326548], +[0.176676741237, -0.2240491972846], +[0.1819865809218, -0.2241680381452], +[0.1872924286052, -0.2242907886324], +[0.1925941593951, -0.2244174835523], +[0.1978916477744, -0.2245481591637], +[0.203184767588, -0.224682853223], +[0.2084733920299, -0.2248216050303], +[0.2137573936313, -0.2249644554791], +[0.2190366442494, -0.2251114471075], +[0.2243110150566, -0.2252626241524], +[0.2295803765311, -0.2254180326063], +[0.2348445984477, -0.2255777202768], +[0.2401035498707, -0.2257417368496], +[0.2453570991464, -0.2259101339537], +[0.2506051138984, -0.2260829652304], +[0.255847461023, -0.2262602864059], +[0.2610840066866, -0.2264421553666], +[0.2663146163244, -0.2266286322395], +[0.2715391546409, -0.2268197794747], +[0.2767574856128, -0.2270156619339], +[0.2819694724923, -0.2272163469816], +[0.2871749778149, -0.2274219045822], +[0.2923738634074, -0.2276324074005], +[0.2975659904002, -0.2278479309083], +[0.3027512192417, -0.2280685534957], +[0.3079294097156, -0.2282943565876], +[0.3131004209622, -0.2285254247667], +[0.3182641115036, -0.2287618459018], +[0.323420339272, -0.2290037112832], +[0.3285689616435, -0.2292511157636], +[0.3337098354763, -0.2295041579072], +[0.3388428171542, -0.229762940145], +[0.3439677626363, -0.230027568939], +[0.3490845275129, -0.2302981549526], +[0.3541929670681, -0.2305748132314], +[0.3592929363504, -0.2308576633911], +[0.3643842902514, -0.2311468298152], +[0.3694668835939, -0.2314424418626], +[0.3745405712296, -0.2317446340843], +[0.3796052081482, -0.232053546451], +[0.3846606495973, -0.2323693245912], +[0.3897067512167, -0.2326921200408], +[0.3947433691861, -0.2330220905035], +[0.3997703603882, -0.2333594001239], +[0.4047875825887, -0.2337042197722], +[0.4097948946356, -0.234056727342], +[0.4147921566774, -0.2344171080604], +[0.4197792304038, -0.2347855548117], +[0.4247559793109, -0.2351622684737], +[0.4297222689908, -0.2355474582677], +[0.4346779674515, -0.2359413421217], +[0.4396229454657, -0.2363441470462], +[0.4445570769543, -0.236756109523], +[0.4494802394055, -0.2371774759063], +[0.4543923143327, -0.2376085028347], +[0.4592931877757, -0.2380494576537], +[0.4641827508465, -0.2385006188477], +[0.4690609003247, -0.238962276478], +[0.4739275393055, -0.2394347326273], +[0.4787825779042, -0.2399183018458], +[0.4836259340205, -0.2404133115963], +[0.4884575341668, -0.2409201026947], +[0.493277314364, -0.2414390297417], +[0.4980852211083, -0.2419704615383], +[0.5028812124123, -0.2425147814805], +[0.5076652589228, -0.2430723879253], +[0.5124373451176, -0.2436436945182], +[0.517197470583, -0.2442291304733], +[0.5219456513721, -0.2448291407949], +[0.5266819214426, -0.2454441864266], +[0.5314063341714, -0.2460747443149], +[0.5361189639419, -0.2467213073707], +[0.5408199077962, -0.2473843843127], +[0.5455092871429, -0.2480644993734], +[0.5501872495065, -0.2487621918479], +[0.5548539703028, -0.2494780154663], +[0.559509654618, -0.2502125375682], +[0.5641545389668, -0.2509663380587], +[0.5687882113692, -0.251739771311], +[-0.56644401003, -0.2476796311941], +[-0.561789304747, -0.2469055645734], +[-0.5571237928399, -0.246150846851], +[-0.5524479210913, -0.2454150522554], +[-0.5477614645624, -0.2446976283774], +[-0.543064227453, -0.2439980343885], +[-0.5383560415292, -0.2433157419944], +[-0.5336367645304, -0.2426502361974], +[-0.5289062785769, -0.2420010158832], +[-0.5241644885962, -0.2413675942508], +[-0.5194113207836, -0.2407494991019], +[-0.5146467211086, -0.2401462730073], +[-0.5098706538748, -0.2395574733667], +[-0.5050831003431, -0.2389826723744], +[-0.5002840574187, -0.2384214569069], +[-0.4954735364085, -0.2378734283439], +[-0.4906515618474, -0.237338202334], +[-0.4858181703952, -0.2368154085149], +[-0.480973409803, -0.2363046901971], +[-0.4761173379475, -0.2358057040198], +[-0.4712500219307, -0.2353181195843], +[-0.4663715372435, -0.234841619072], +[-0.4614819669889, -0.2343758968515], +[-0.4565814011634, -0.2339206590797], +[-0.4516699359924, -0.2334756233001], +[-0.4467476733164, -0.2330405180411], +[-0.4418147200255, -0.2326150824182], +[-0.4368711875391, -0.2321990657404], +[-0.4319171913268, -0.231792227124], +[-0.4269528504686, -0.2313943351147], +[-0.4219782872516, -0.2310051673184], +[-0.4169936267999, -0.2306245100429], +[-0.4119989967355, -0.2302521579496], +[-0.4069945268685, -0.2298879137167], +[-0.4019803489133, -0.2295315877143], +[-0.3969565962296, -0.2291829976897], +[-0.3919234035858, -0.2288419684663], +[-0.3868809069433, -0.228508331652], +[-0.3818292432599, -0.2281819253603], +[-0.3767685503109, -0.2278625939428], +[-0.3716989665262, -0.2275501877312], +[-0.3666206308421, -0.2272445627922], +[-0.3615336825677, -0.2269455806909], +[-0.3564382612624, -0.2266531082656], +[-0.3513345066262, -0.2263670174118], +[-0.3462225584001, -0.226087184876], +[-0.3411025562756, -0.2258134920583], +[-0.3359746398145, -0.2255458248243], +[-0.3308389483755, -0.2252840733246], +[-0.325695621049, -0.2250281318236], +[-0.3205447965988, -0.2247778985347], +[-0.3153866134098, -0.2245332754644], +[-0.310221209442, -0.2242941682621], +[-0.3050487221892, -0.2240604860778], +[-0.2998692886429, -0.223832141426], +[-0.2946830452608, -0.2236090500555], +[-0.2894901279394, -0.2233911308256], +[-0.2842906719902, -0.223178305588], +[-0.2790848121192, -0.2229704990736], +[-0.2738726824103, -0.2227676387853], +[-0.2686544163109, -0.2225696548948], +[-0.2634301466203, -0.2223764801451], +[-0.2582000054813, -0.222188049757], +[-0.2529641243728, -0.2220043013396], +[-0.2477226341056, -0.2218251748059], +[-0.2424756648197, -0.2216506122912], +[-0.2372233459833, -0.2214805580758], +[-0.2319658063936, -0.2213149585116], +[-0.2267031741786, -0.2211537619515], +[-0.2214355768012, -0.2209969186822], +[-0.2161631410636, -0.2208443808607], +[-0.2108859931134, -0.2206961024528], +[-0.205604258451, -0.2205520391751], +[-0.2003180619369, -0.22041214844], +[-0.1950275278012, -0.2202763893022], +[-0.1897327796533, -0.2201447224091], +[-0.1844339404923, -0.2200171099522], +[-0.1791311327181, -0.2198935156222], +[-0.1738244781438, -0.2197739045646], +[-0.1685140980075, -0.2196582433393], +[-0.1632001129861, -0.2195464998806], +[-0.1578826432082, -0.2194386434599], +[-0.1525618082684, -0.2193346446503], +[-0.1472377272419, -0.2192344752925], +[-0.141910518699, -0.219138108463], +[-0.1365802917963, -0.2190455311332], +[-0.1312471702611, -0.2189567301305], +[-0.1259112708826, -0.2188717570591], +[-0.1205727656562, -0.2187908472442], +[-0.1152321220883, -0.2187148998838], +[-0.1098881698465, -0.2186384011974], +[-0.1045423495384, -0.2185679959871], +[-0.0991943339977, -0.2185012190603], +[-0.09384423797244, -0.2184380534208], +[-0.0884921758705, -0.2183784830678], +[-0.08313826177715, -0.2183224929789], +[-0.07778260947289, -0.2182700690945], +[-0.07242533245125, -0.2182211983028], +[-0.06706654393673, -0.2181758684257], +[-0.06170635690317, -0.2181340682071], +[-0.05634488409167, -0.2180957873004], +[-0.05098223802902, -0.2180610162579], +[-0.04561853104609, -0.2180297465213], +[-0.04025387529626, -0.218001970413], +[-0.03488838277392, -0.2179776811278], +[-0.02952216533311, -0.2179568727263], +[-0.02415533470604, -0.2179395401287], +[-0.01878800252186, -0.2179256791097], +[-0.01342028032529, -0.2179152862942], +[-0.008052279595368, -0.2179083591538], +[-0.002684111764216, -0.2179048960045], +[0.002684111764217, -0.2179048960045], +[0.00805227959537, -0.2179083591538], +[0.01342028032529, -0.2179152862942], +[0.01878800252186, -0.2179256791097], +[0.02415533470604, -0.2179395401287], +[0.02952216533311, -0.2179568727263], +[0.03488838277393, -0.2179776811278], +[0.04025387529626, -0.218001970413], +[0.04561853104609, -0.2180297465213], +[0.05098223802902, -0.2180610162579], +[0.05634488409167, -0.2180957873004], +[0.06170635690317, -0.2181340682071], +[0.06706654393673, -0.2181758684257], +[0.07242533245128, -0.2182211983028], +[0.07778260947289, -0.2182700690945], +[0.08313826177716, -0.2183224929789], +[0.0884921758705, -0.2183784830678], +[0.09384423797244, -0.2184380534208], +[0.0991943339977, -0.2185012190603], +[0.1045423495384, -0.2185679959871], +[0.1098881698465, -0.2186384011974], +[0.1152321220883, -0.2187148998838], +[0.1205727656562, -0.2187908472442], +[0.1259112708826, -0.2188717570591], +[0.1312471702611, -0.2189567301305], +[0.1365802917963, -0.2190455311332], +[0.141910518699, -0.219138108463], +[0.1472377272419, -0.2192344752925], +[0.1525618082684, -0.2193346446503], +[0.1578826432082, -0.2194386434599], +[0.1632001129861, -0.2195464998806], +[0.1685140980075, -0.2196582433393], +[0.1738244781438, -0.2197739045646], +[0.1791311327181, -0.2198935156222], +[0.1844339404923, -0.2200171099522], +[0.1897327796533, -0.2201447224091], +[0.1950275278012, -0.2202763893022], +[0.2003180619369, -0.22041214844], +[0.205604258451, -0.2205520391751], +[0.2108859931134, -0.2206961024528], +[0.2161631410636, -0.2208443808607], +[0.2214355768012, -0.2209969186823], +[0.2267031741786, -0.2211537619515], +[0.2319658063936, -0.2213149585116], +[0.2372233459833, -0.2214805580758], +[0.2424756648197, -0.2216506122912], +[0.2477226341056, -0.2218251748059], +[0.2529641243728, -0.2220043013396], +[0.2582000054813, -0.222188049757], +[0.2634301466203, -0.2223764801451], +[0.2686544163109, -0.2225696548948], +[0.2738726824103, -0.2227676387853], +[0.2790848121192, -0.2229704990736], +[0.2842906719902, -0.223178305588], +[0.2894901279394, -0.2233911308256], +[0.2946830452608, -0.2236090500555], +[0.2998692886429, -0.223832141426], +[0.3050487221892, -0.2240604860778], +[0.310221209442, -0.2242941682621], +[0.3153866134098, -0.2245332754644], +[0.3205447965988, -0.2247778985347], +[0.325695621049, -0.2250281318236], +[0.3308389483755, -0.2252840733246], +[0.3359746398145, -0.2255458248243], +[0.3411025562756, -0.2258134920583], +[0.3462225584001, -0.226087184876], +[0.3513345066262, -0.2263670174118], +[0.3564382612624, -0.2266531082656], +[0.3615336825677, -0.2269455806909], +[0.3666206308421, -0.2272445627922], +[0.3716989665262, -0.2275501877312], +[0.3767685503109, -0.2278625939428], +[0.3818292432599, -0.2281819253603], +[0.3868809069433, -0.228508331652], +[0.3919234035858, -0.2288419684663], +[0.3969565962296, -0.2291829976897], +[0.4019803489133, -0.2295315877143], +[0.4069945268685, -0.2298879137167], +[0.4119989967355, -0.2302521579496], +[0.4169936267999, -0.2306245100429], +[0.4219782872516, -0.2310051673184], +[0.4269528504686, -0.2313943351147], +[0.4319171913268, -0.231792227124], +[0.4368711875391, -0.2321990657404], +[0.4418147200255, -0.2326150824182], +[0.4467476733164, -0.2330405180411], +[0.4516699359924, -0.2334756233001], +[0.4565814011634, -0.2339206590797], +[0.4614819669889, -0.2343758968515], +[0.4663715372435, -0.234841619072], +[0.4712500219307, -0.2353181195843], +[0.4761173379475, -0.2358057040198], +[0.480973409803, -0.2363046901971], +[0.4858181703952, -0.2368154085149], +[0.4906515618474, -0.237338202334], +[0.4954735364086, -0.2378734283439], +[0.5002840574187, -0.2384214569069], +[0.5050831003431, -0.2389826723744], +[0.5098706538748, -0.2395574733667], +[0.5146467211085, -0.2401462730073], +[0.5194113207836, -0.2407494991018], +[0.5241644885961, -0.2413675942509], +[0.5289062785769, -0.2420010158833], +[0.5336367645304, -0.2426502361974], +[0.5383560415292, -0.2433157419944], +[0.543064227453, -0.2439980343885], +[0.5477614645624, -0.2446976283774], +[0.5524479210913, -0.2454150522554], +[0.5571237928399, -0.246150846851], +[0.561789304747, -0.2469055645736], +[0.5664440100089, -0.2476796312823], +[-0.5640870062091, -0.2435972588034], +[-0.5594119235555, -0.2428227399232], +[-0.5547264750751, -0.2420673387551], +[-0.550031088421, -0.241330521976], +[-0.5453255495289, -0.2406117626669], +[-0.5406096713997, -0.2399105446113], +[-0.5358832926898, -0.2392263631686], +[-0.5311462762805, -0.2385587259775], +[-0.5263985078454, -0.2379071535049], +[-0.5216398944315, -0.2372711794543], +[-0.5168703630688, -0.2366503510484], +[-0.5120898594154, -0.2360442292019], +[-0.5072983464506, -0.2354523885963], +[-0.502495803219, -0.2348744176699], +[-0.4976822236317, -0.2343099185364], +[-0.492857615326, -0.2337585068403], +[-0.4880219985866, -0.2332198115621], +[-0.4831754053283, -0.2326934747796], +[-0.4783178781391, -0.2321791513948], +[-0.4734494693836, -0.2316765088333], +[-0.4685702403651, -0.2311852267208], +[-0.4636802605433, -0.2307049965452], +[-0.4587796068072, -0.2302355213056], +[-0.4538683627987, -0.2297765151546], +[-0.4489466182858, -0.2293277030365], +[-0.4440144685821, -0.2288888203239], +[-0.4390720140099, -0.2284596124563], +[-0.4341193594043, -0.2280398345813], +[-0.4291566136562, -0.2276292512016], +[-0.4241838892903, -0.2272276358278], +[-0.4192013020778, -0.2268347706391], +[-0.414208970679, -0.2264504461524], +[-0.409207016316, -0.2260744608998], +[-0.4041955624713, -0.2257066211168], +[-0.3991747346121, -0.2253467404389], +[-0.3941446599367, -0.2249946396098], +[-0.3891054671436, -0.2246501461985], +[-0.3840572862184, -0.2243130943274], +[-0.3790002482408, -0.2239833244104], +[-0.3739344852069, -0.2236606829005], +[-0.3688601298683, -0.2233450220483], +[-0.3637773155832, -0.2230361996694], +[-0.3586861761837, -0.2227340789215], +[-0.3535868458527, -0.222438528091], +[-0.3484794590132, -0.2221494203878], +[-0.3433641502276, -0.22186663375], +[-0.3382410541058, -0.2215900506555], +[-0.3331103052232, -0.2213195579433], +[-0.3279720380457, -0.2210550466412], +[-0.3228263868624, -0.2207964118017], +[-0.3176734857254, -0.2205435523456], +[-0.3125134683951, -0.220296370911], +[-0.3073464682917, -0.2200547737109], +[-0.3021726184525, -0.2198186703956], +[-0.2969920514926, -0.2195879739222], +[-0.2918048995718, -0.2193626004295], +[-0.2866112943644, -0.2191424691184], +[-0.2814113670331, -0.2189275021385], +[-0.2762052482069, -0.2187176244787], +[-0.2709930679612, -0.2185127638632], +[-0.2657749558022, -0.218312850653], +[-0.2605510406525, -0.2181178177501], +[-0.2553214508408, -0.2179276005081], +[-0.2500863140925, -0.217742136645], +[-0.2448457575235, -0.2175613661612], +[-0.2395999076352, -0.217385231261], +[-0.234348890312, -0.217213676277], +[-0.2290928308199, -0.2170466475989], +[-0.2238318538069, -0.216884093605], +[-0.2185660833051, -0.2167259645969], +[-0.2132956427333, -0.2165722127375], +[-0.2080206549017, -0.2164227919913], +[-0.2027412420175, -0.216277658068], +[-0.197457525691, -0.2161367683687], +[-0.1921696269433, -0.216000081934], +[-0.1868776662147, -0.2158675593952], +[-0.1815817633736, -0.2157391629277], +[-0.1762820377267, -0.2156148562063], +[-0.1709786080294, -0.2154946043627], +[-0.1656715924972, -0.2153783739452], +[-0.1603611088175, -0.2152661328806], +[-0.155047274162, -0.2151578504371], +[-0.1497302051995, -0.2150534971901], +[-0.1444100181094, -0.2149530449888], +[-0.1390868285957, -0.214856466925], +[-0.1337607147242, -0.2147637368531], +[-0.1284317770871, -0.2146748517697], +[-0.123099977579, -0.2145898655683], +[-0.1177649669255, -0.2145091056082], +[-0.1124298628365, -0.2144308302458], +[-0.1070910637643, -0.2143569979642], +[-0.1017500601164, -0.2142868839454], +[-0.09640696433183, -0.2142204702742], +[-0.09106188851304, -0.2141577400619], +[-0.08571494444287, -0.2140986774279], +[-0.08036624360138, -0.2140432674839], +[-0.07501589718287, -0.213991496318], +[-0.06966401611309, -0.2139433509808], +[-0.06431071106658, -0.2138988194717], +[-0.05895609248414, -0.2138578907272], +[-0.05360027059037, -0.2138205546091], +[-0.04824335541137, -0.2137868018946], +[-0.04288545679248, -0.2137566242669], +[-0.03752668441617, -0.2137300143068], +[-0.03216714781993, -0.2137069654853], +[-0.02680695641427, -0.2136874721569], +[-0.02144621950074, -0.2136715295543], +[-0.01608504629004, -0.2136591337833], +[-0.01072354592016, -0.2136502818191], +[-0.005361827474478, -0.2136449715034], +[4.45853676819e-16, -0.2136432015419], +[0.005361827474479, -0.2136449715034], +[0.01072354592016, -0.2136502818191], +[0.01608504629004, -0.2136591337833], +[0.02144621950074, -0.2136715295543], +[0.02680695641427, -0.2136874721569], +[0.03216714781993, -0.2137069654853], +[0.03752668441617, -0.2137300143068], +[0.04288545679248, -0.2137566242669], +[0.04824335541137, -0.2137868018946], +[0.05360027059037, -0.2138205546091], +[0.05895609248415, -0.2138578907272], +[0.06431071106659, -0.2138988194717], +[0.06966401611309, -0.2139433509808], +[0.07501589718287, -0.213991496318], +[0.08036624360138, -0.2140432674839], +[0.08571494444288, -0.2140986774279], +[0.09106188851304, -0.2141577400619], +[0.09640696433183, -0.2142204702742], +[0.1017500601164, -0.2142868839454], +[0.1070910637643, -0.2143569979642], +[0.1124298628366, -0.2144308302458], +[0.1177649669255, -0.2145091056082], +[0.123099977579, -0.2145898655683], +[0.1284317770871, -0.2146748517697], +[0.1337607147242, -0.2147637368531], +[0.1390868285957, -0.214856466925], +[0.1444100181094, -0.2149530449888], +[0.1497302051995, -0.2150534971901], +[0.155047274162, -0.2151578504371], +[0.1603611088175, -0.2152661328806], +[0.1656715924972, -0.2153783739452], +[0.1709786080292, -0.2154946043626], +[0.1762820377267, -0.2156148562063], +[0.1815817633736, -0.2157391629277], +[0.1868776662147, -0.2158675593952], +[0.1921696269433, -0.216000081934], +[0.197457525691, -0.2161367683687], +[0.2027412420175, -0.216277658068], +[0.2080206549017, -0.2164227919913], +[0.2132956427333, -0.2165722127375], +[0.2185660833051, -0.2167259645969], +[0.2238318538069, -0.216884093605], +[0.2290928308199, -0.2170466475989], +[0.234348890312, -0.217213676277], +[0.2395999076352, -0.217385231261], +[0.2448457575235, -0.2175613661612], +[0.2500863140925, -0.217742136645], +[0.2553214508408, -0.2179276005081], +[0.2605510406525, -0.2181178177501], +[0.2657749558022, -0.218312850653], +[0.2709930679612, -0.2185127638632], +[0.2762052482069, -0.2187176244787], +[0.2814113670331, -0.2189275021385], +[0.2866112943644, -0.2191424691184], +[0.2918048995718, -0.2193626004295], +[0.2969920514926, -0.2195879739222], +[0.3021726184525, -0.2198186703956], +[0.3073464682917, -0.2200547737109], +[0.3125134683951, -0.220296370911], +[0.3176734857254, -0.2205435523456], +[0.3228263868624, -0.2207964118017], +[0.3279720380457, -0.2210550466412], +[0.3331103052232, -0.2213195579433], +[0.3382410541058, -0.2215900506555], +[0.3433641502276, -0.22186663375], +[0.3484794590132, -0.2221494203878], +[0.3535868458527, -0.222438528091], +[0.3586861761837, -0.2227340789215], +[0.3637773155832, -0.2230361996694], +[0.3688601298683, -0.2233450220483], +[0.3739344852071, -0.2236606829005], +[0.3790002482408, -0.2239833244104], +[0.3840572862184, -0.2243130943274], +[0.3891054671436, -0.2246501461985], +[0.3941446599367, -0.2249946396098], +[0.3991747346121, -0.2253467404389], +[0.4041955624713, -0.2257066211168], +[0.409207016316, -0.2260744608998], +[0.414208970679, -0.2264504461524], +[0.4192013020778, -0.2268347706391], +[0.4241838892903, -0.2272276358278], +[0.4291566136562, -0.2276292512016], +[0.4341193594043, -0.2280398345813], +[0.4390720140099, -0.2284596124563], +[0.4440144685821, -0.2288888203239], +[0.4489466182858, -0.2293277030365], +[0.4538683627987, -0.2297765151546], +[0.4587796068072, -0.2302355213056], +[0.4636802605433, -0.2307049965452], +[0.4685702403651, -0.2311852267208], +[0.4734494693836, -0.2316765088333], +[0.4783178781391, -0.2321791513948], +[0.4831754053283, -0.2326934747795], +[0.4880219985866, -0.2332198115621], +[0.492857615326, -0.2337585068403], +[0.4976822236317, -0.2343099185364], +[0.502495803219, -0.2348744176699], +[0.5072983464506, -0.2354523885963], +[0.5120898594154, -0.2360442292019], +[0.5168703630688, -0.2366503510483], +[0.5216398944316, -0.2372711794542], +[0.5263985078453, -0.237907153505], +[0.5311462762805, -0.2385587259775], +[0.5358832926898, -0.2392263631686], +[0.5406096713997, -0.2399105446113], +[0.5453255495289, -0.2406117626669], +[0.550031088421, -0.241330521976], +[0.5547264750751, -0.2420673387551], +[0.5594119235555, -0.2428227399232], +[0.5640876763578, -0.2435972620443], +[-0.5617176574492, -0.2394925305913], +[-0.5570226934422, -0.2387184270985], +[-0.5523179696499, -0.2379625677625], +[-0.5476037123525, -0.2372249694145], +[-0.5428797177112, -0.2365051288172], +[-0.5381458070704, -0.2358025526505], +[-0.5334018256905, -0.2351167583121], +[-0.5286476414592, -0.2344472745683], +[-0.5238831435992, -0.2337936420658], +[-0.5191082413869, -0.2331554137197], +[-0.5143228628912, -0.232532154988], +[-0.509526953745, -0.2319234440467], +[-0.5047204759541, -0.2313288718767], +[-0.4999034067517, -0.2307480422729], +[-0.4950757375003, -0.2301805717876], +[-0.4902374726453, -0.2296260896165], +[-0.4853886287221, -0.2290842374359], +[-0.4805292334158, -0.2285546692001], +[-0.4756593246758, -0.2280370509055], +[-0.4707789498826, -0.2275310603277], +[-0.465888165067, -0.2270363867367], +[-0.4609870341791, -0.2265527305968], +[-0.4560756284068, -0.2260798032535], +[-0.4511540255397, -0.2256173266125], +[-0.4462223093782, -0.2251650328131], +[-0.4412805691842, -0.2247226638999], +[-0.4363288991718, -0.2242899714939], +[-0.4313673980358, -0.2238667164655], +[-0.4263961685149, -0.2234526686114], +[-0.4214153169884, -0.2230476063359], +[-0.4164249531039, -0.2226513163386], +[-0.4114251894336, -0.2222635933088], +[-0.4064161411576, -0.2218842396274], +[-0.4013979257728, -0.2215130650767], +[-0.3963706628242, -0.2211498865596], +[-0.3913344736586, -0.2207945278261], +[-0.3862894811982, -0.2204468192099], +[-0.3812358097324, -0.2201065973737], +[-0.3761735847274, -0.2197737050632], +[-0.3711029326512, -0.2194479908701], +[-0.3660239808141, -0.2191293090047], +[-0.3609368572221, -0.2188175190763], +[-0.355841690443, -0.2185124858829], +[-0.3507386094846, -0.2182140792085], +[-0.3456277436833, -0.2179221736297], +[-0.3405092226026, -0.2176366483291], +[-0.3353831759407, -0.217357386917], +[-0.330249733447, -0.2170842772608], +[-0.3251090248462, -0.2168172113207], +[-0.3199611797687, -0.2165560849936], +[-0.3148063276896, -0.2163007979625], +[-0.3096445978716, -0.2160512535534], +[-0.3044761193154, -0.2158073585975], +[-0.2993010207141, -0.2155690233001], +[-0.294119430413, -0.2153361611151], +[-0.288931476374, -0.2151086886241], +[-0.2837372861433, -0.2148865254227], +[-0.2785369868238, -0.2146695940098], +[-0.2733307050505, -0.2144578196827], +[-0.2681185669692, -0.2142511304376], +[-0.2629006982184, -0.2140494568729], +[-0.2576772239135, -0.213852732098], +[-0.2524482686342, -0.2136608916459], +[-0.2472139564136, -0.2134738733894], +[-0.2419744107299, -0.2132916174615], +[-0.2367297545, -0.2131140661791], +[-0.2314801100747, -0.2129411639701], +[-0.2262255992364, -0.2127728573041], +[-0.2209663431972, -0.2126090946257], +[-0.2157024625996, -0.2124498262914], +[-0.2104340775179, -0.2122950045091], +[-0.2051613074611, -0.2121445832804], +[-0.1998842713768, -0.2119985183454], +[-0.1946030876565, -0.2118567671303], +[-0.1893178741416, -0.2117192886972], +[-0.1840287481304, -0.2115860436965], +[-0.1787358263861, -0.2114569943214], +[-0.1734392251451, -0.2113321042641], +[-0.1681390601271, -0.2112113386752], +[-0.1628354465447, -0.2110946641235], +[-0.1575284991142, -0.2109820485595], +[-0.1522183320672, -0.2108734612789], +[-0.146905059162, -0.2107688728893], +[-0.1415887936965, -0.2106682552778], +[-0.1362696485208, -0.2105715815806], +[-0.1309476884315, -0.2104787641705], +[-0.1256229699766, -0.210389777575], +[-0.1202952705176, -0.2103044178899], +[-0.1149665127994, -0.2102238307911], +[-0.1096346471026, -0.2101465154765], +[-0.1043005701629, -0.2100730076016], +[-0.0989643920884, -0.2100032883149], +[-0.09362622265542, -0.2099373398214], +[-0.08828617132431, -0.2098751453644], +[-0.08294434725539, -0.2098166892085], +[-0.07760085932519, -0.2097619566234], +[-0.0722558161428, -0.209710933869], +[-0.06690932606641, -0.209663608182], +[-0.06156149721999, -0.2096199677625], +[-0.05621243751014, -0.2095800017627], +[-0.05086225464304, -0.2095437002759], +[-0.04551105614149, -0.2095110543266], +[-0.0401589493621, -0.2094820558618], +[-0.03480604151257, -0.2094566977432], +[-0.02945243966897, -0.2094349737398], +[-0.02409825079322, -0.2094168785219], +[-0.01874358175049, -0.2094024076564], +[-0.01338853932676, -0.2093915576015], +[-0.008033230246377, -0.2093843257042], +[-0.002677761189631, -0.2093807101972], +[0.002677761189632, -0.2093807101972], +[0.008033230246378, -0.2093843257042], +[0.01338853932676, -0.2093915576015], +[0.01874358175049, -0.2094024076564], +[0.02409825079322, -0.2094168785219], +[0.02945243966898, -0.2094349737398], +[0.03480604151257, -0.2094566977432], +[0.04015894936211, -0.2094820558618], +[0.04551105614149, -0.2095110543266], +[0.05086225464304, -0.2095437002759], +[0.05621243751015, -0.2095800017627], +[0.06156149721999, -0.2096199677625], +[0.06690932606641, -0.209663608182], +[0.07225581614281, -0.209710933869], +[0.0776008593252, -0.2097619566234], +[0.08294434725539, -0.2098166892085], +[0.08828617132431, -0.2098751453644], +[0.09362622265542, -0.2099373398214], +[0.0989643920884, -0.2100032883149], +[0.1043005701628, -0.2100730076016], +[0.1096346471026, -0.2101465154765], +[0.1149665127994, -0.2102238307911], +[0.1202952732557, -0.2103044198231], +[0.1256229699766, -0.210389777575], +[0.1309476884315, -0.2104787641705], +[0.1362696485208, -0.2105715815806], +[0.1415887936965, -0.2106682552778], +[0.146905059162, -0.2107688728893], +[0.1522183320672, -0.2108734612789], +[0.1575284991142, -0.2109820485595], +[0.1628354465447, -0.2110946641235], +[0.1681390601271, -0.2112113386752], +[0.1734392251451, -0.2113321042641], +[0.1787358263861, -0.2114569943214], +[0.1840287481304, -0.2115860436965], +[0.1893178741416, -0.2117192886972], +[0.1946030876565, -0.2118567671303], +[0.1998842713768, -0.2119985183454], +[0.2051613074611, -0.2121445832804], +[0.2104340775179, -0.2122950045091], +[0.2157024625996, -0.2124498262914], +[0.2209663431972, -0.2126090946257], +[0.2262255992364, -0.2127728573041], +[0.2314801100747, -0.2129411639701], +[0.2367297545, -0.2131140661791], +[0.2419744107299, -0.2132916174615], +[0.2472139564136, -0.2134738733894], +[0.2524482686342, -0.2136608916459], +[0.2576772239135, -0.213852732098], +[0.2629006982184, -0.2140494568729], +[0.2681185669692, -0.2142511304376], +[0.2733307050505, -0.2144578196827], +[0.2785369868238, -0.2146695940098], +[0.2837372861433, -0.2148865254227], +[0.288931476374, -0.2151086886241], +[0.294119430413, -0.2153361611151], +[0.2993010207141, -0.2155690233001], +[0.3044761193154, -0.2158073585975], +[0.3096445978716, -0.2160512535534], +[0.3148063276896, -0.2163007979625], +[0.3199611797687, -0.2165560849936], +[0.3251090248462, -0.2168172113207], +[0.330249733447, -0.2170842772608], +[0.3353831759407, -0.217357386917], +[0.3405092226026, -0.2176366483291], +[0.3456277436833, -0.2179221736297], +[0.3507386094846, -0.2182140792085], +[0.355841690443, -0.2185124858829], +[0.3609368572221, -0.2188175190763], +[0.3660239808141, -0.2191293090047], +[0.3711029326512, -0.2194479908701], +[0.3761735847274, -0.2197737050632], +[0.3812358097324, -0.2201065973737], +[0.3862894811982, -0.2204468192099], +[0.3913344736586, -0.2207945278261], +[0.3963706628242, -0.2211498865596], +[0.4013979257728, -0.2215130650767], +[0.4064161411576, -0.2218842396274], +[0.4114251894336, -0.2222635933088], +[0.4164249531039, -0.2226513163386], +[0.4214153169884, -0.2230476063359], +[0.4263961685149, -0.2234526686114], +[0.4313673980358, -0.2238667164655], +[0.4363288991718, -0.2242899714939], +[0.4412805691842, -0.2247226638999], +[0.4462223093782, -0.2251650328131], +[0.4511540255397, -0.2256173266125], +[0.4560756284068, -0.2260798032535], +[0.4609870341791, -0.2265527305968], +[0.465888165067, -0.2270363867367], +[0.4707789498826, -0.2275310603277], +[0.4756593246758, -0.2280370509055], +[0.4805292334158, -0.2285546692001], +[0.4853886287221, -0.2290842374359], +[0.4902374726453, -0.2296260896165], +[0.4950757375003, -0.2301805717877], +[0.4999034067517, -0.2307480422729], +[0.5047204759541, -0.2313288718767], +[0.509526953745, -0.2319234440467], +[0.5143228628912, -0.232532154988], +[0.5191082413869, -0.2331554137197], +[0.5238831435992, -0.2337936420658], +[0.5286476414592, -0.2344472745683], +[0.5334018256906, -0.2351167583121], +[0.5381458070704, -0.2358025526504], +[0.5428797177112, -0.2365051288172], +[0.5476037123525, -0.2372249694145], +[0.5523179696499, -0.2379625677625], +[0.5570226934422, -0.2387184270985], +[0.5617176574419, -0.2394925306281], +[-0.559335846508, -0.23536721457], +[-0.5546219005642, -0.2345931649879], +[-0.5498985351729, -0.2338370648965], +[-0.5451660252535, -0.233098916651], +[-0.5404241765912, -0.2323782390608], +[-0.5356728184427, -0.2316745601476], +[-0.5309118023922, -0.2309874178807], +[-0.526141001189, -0.2303163607789], +[-0.5213603075786, -0.2296609483893], +[-0.5165696331415, -0.2290207516536], +[-0.5117689071492, -0.2283953531742], +[-0.5069580754453, -0.2277843473894], +[-0.5021370993601, -0.2271873406687], +[-0.4973059546626, -0.2266039513375], +[-0.492464630554, -0.2260338096409], +[-0.487613128706, -0.2254765576548], +[-0.4827514623448, -0.224931849151], +[-0.477879655383, -0.2243993494257], +[-0.4729977415981, -0.2238787350953], +[-0.4681057638583, -0.2233696938665], +[-0.4632037733945, -0.2228719242861], +[-0.4582918291173, -0.2223851354737], +[-0.4533699969772, -0.2219090468424], +[-0.4484383493675, -0.2214433878104], +[-0.4434969645665, -0.2209878975069], +[-0.4385459262185, -0.2205423244738], +[-0.4335853228505, -0.2201064263673], +[-0.4286152474242, -0.2196799696597], +[-0.423635796919, -0.2192627293427], +[-0.418647071947, -0.2188544886359], +[-0.4136491763952, -0.2184550386984], +[-0.4086422170958, -0.2180641783469], +[-0.4036263035202, -0.2176817137796], +[-0.3986015474976, -0.2173074583075], +[-0.3935680629549, -0.2169412320918], +[-0.3885259656765, -0.2165828618907], +[-0.3834753730839, -0.216232180812], +[-0.3784164040322, -0.215889028075], +[-0.3733491786232, -0.2155532487798], +[-0.3682738180335, -0.2152246936851], +[-0.3631904443568, -0.2149032189931], +[-0.3580991804589, -0.2145886861431], +[-0.3530001498454, -0.2142809616124], +[-0.3478934765399, -0.2139799167252], +[-0.3427792849729, -0.2136854274684], +[-0.3376576998802, -0.2133973743151], +[-0.3325288462101, -0.2131156420552], +[-0.3273928490393, -0.2128401196326], +[-0.3222498334952, -0.212570699989], +[-0.3170999246868, -0.2123072799149], +[-0.3119432476408, -0.2120497599055], +[-0.3067799272443, -0.2117980440239], +[-0.3016100881932, -0.2115520397694], +[-0.296433854945, -0.2113116579518], +[-0.2912513516776, -0.2110768125703], +[-0.2860627022512, -0.2108474206985], +[-0.2808680301748, -0.2106234023741], +[-0.2756674585774, -0.2104046804927], +[-0.2704611101805, -0.2101911807073], +[-0.2652491072764, -0.2099828313313], +[-0.2600315717073, -0.2097795632459], +[-0.2548086248487, -0.2095813098124], +[-0.2495803875946, -0.2093880067866], +[-0.2443469803451, -0.2091995922391], +[-0.2391085229968, -0.2090160064772], +[-0.2338651349341, -0.2088371919715], +[-0.228616935024, -0.2086630932855], +[-0.223364041611, -0.2084936570078], +[-0.2181065725147, -0.208328831688], +[-0.2128446450287, -0.2081685677755], +[-0.2075783759206, -0.2080128175599], +[-0.2023078814334, -0.2078615351161], +[-0.1970332772886, -0.2077146762499], +[-0.1917546786896, -0.2075721984475], +[-0.1864722003267, -0.2074340608263], +[-0.1811859563833, -0.207300224089], +[-0.1758960605419, -0.2071706504789], +[-0.1706026259921, -0.2070453037381], +[-0.165305765439, -0.2069241490667], +[-0.1600055911121, -0.206807153085], +[-0.154702214775, -0.206694283797], +[-0.1493957477356, -0.2065855105555], +[-0.1440863008573, -0.2064808040291], +[-0.1387739845705, -0.2063801361715], +[-0.133458908884, -0.2062834801907], +[-0.1281411833982, -0.206190810522], +[-0.122820917317, -0.2061021028001], +[-0.1174982194619, -0.2060173338348], +[-0.1121731982852, -0.2059364815863], +[-0.1068459618841, -0.2058595251431], +[-0.1015166180145, -0.2057864447003], +[-0.09618527410621, -0.2057172215398], +[-0.09085203727745, -0.2056518380113], +[-0.08551701434994, -0.2055902775147], +[-0.08018031186425, -0.2055325244834], +[-0.07484203609535, -0.2054785643688], +[-0.06950229306831, -0.2054283836262], +[-0.06416118857419, -0.2053819697012], +[-0.05881882818614, -0.2053393110177], +[-0.05347531727561, -0.205300396966], +[-0.0481307610287, -0.2052652178933], +[-0.04278526446264, -0.2052337650937], +[-0.03743893244235, -0.2052060307999], +[-0.03209186969718, -0.2051820081762], +[-0.02674418083762, -0.2051616913111], +[-0.02139597037218, -0.2051450752123], +[-0.01604734272428, -0.2051321558017], +[-0.0106984022492, -0.2051229299115], +[-0.00534925325109, -0.205117395281], +[4.512676143232e-13, -0.2051155505547], +[0.005349253251091, -0.205117395281], +[0.0106984022492, -0.2051229299115], +[0.01604734272428, -0.2051321558017], +[0.02139597037218, -0.2051450752123], +[0.02674418083762, -0.2051616913111], +[0.03209186969718, -0.2051820081762], +[0.03743893244235, -0.2052060307999], +[0.04278526446264, -0.2052337650936], +[0.0481307610287, -0.2052652178933], +[0.05347531727561, -0.205300396966], +[0.05881882818614, -0.2053393110177], +[0.06416118857419, -0.2053819697012], +[0.06950229306831, -0.2054283836262], +[0.07484203609535, -0.2054785643688], +[0.08018031186425, -0.2055325244834], +[0.08551701434994, -0.2055902775147], +[0.09085203727745, -0.2056518380113], +[0.09618527410621, -0.2057172215398], +[0.1015166180145, -0.2057864447003], +[0.1068459618841, -0.2058595251431], +[0.1121731982853, -0.2059364815863], +[0.1174982194619, -0.2060173338348], +[0.122820917317, -0.2061021028001], +[0.1281411833982, -0.206190810522], +[0.1334589088841, -0.2062834801907], +[0.1387739845705, -0.2063801361715], +[0.1440863008573, -0.2064808040292], +[0.1493957477356, -0.2065855105555], +[0.154702214775, -0.206694283797], +[0.1600055911121, -0.206807153085], +[0.165305765439, -0.2069241490667], +[0.1706026259921, -0.2070453037381], +[0.1758960605419, -0.2071706504789], +[0.1811859563833, -0.207300224089], +[0.1864722003267, -0.2074340608263], +[0.1917546786896, -0.2075721984475], +[0.1970332772886, -0.2077146762499], +[0.2023078814334, -0.2078615351161], +[0.2075783759206, -0.2080128175599], +[0.2128446450287, -0.2081685677755], +[0.2181065725147, -0.208328831688], +[0.223364041611, -0.2084936570078], +[0.228616935024, -0.2086630932855], +[0.2338651349341, -0.2088371919715], +[0.2391085229968, -0.2090160064772], +[0.2443469803451, -0.2091995922391], +[0.2495803875946, -0.2093880067866], +[0.2548086248487, -0.2095813098124], +[0.2600315717073, -0.2097795632459], +[0.2652491072764, -0.2099828313313], +[0.2704611101805, -0.2101911807073], +[0.2756674585774, -0.2104046804927], +[0.2808680301748, -0.2106234023741], +[0.2860627022511, -0.2108474206985], +[0.2912513516776, -0.2110768125703], +[0.296433854945, -0.2113116579518], +[0.3016100881932, -0.2115520397694], +[0.3067799272443, -0.2117980440239], +[0.3119432476408, -0.2120497599055], +[0.3170999246868, -0.2123072799149], +[0.3222498334952, -0.212570699989], +[0.3273928490393, -0.2128401196326], +[0.3325288462101, -0.2131156420552], +[0.3376576998802, -0.2133973743151], +[0.3427792849729, -0.2136854274684], +[0.3478934765399, -0.2139799167252], +[0.3530001498454, -0.2142809616124], +[0.3580991804589, -0.2145886861431], +[0.3631904443568, -0.2149032189931], +[0.3682738180335, -0.2152246936851], +[0.3733491786232, -0.2155532487798], +[0.3784164040322, -0.215889028075], +[0.3834753730839, -0.216232180812], +[0.3885259656765, -0.2165828618907], +[0.3935680629549, -0.2169412320918], +[0.3986015474976, -0.2173074583075], +[0.4036263035202, -0.2176817137797], +[0.4086422170958, -0.2180641783469], +[0.4136491763952, -0.2184550386984], +[0.418647071947, -0.2188544886359], +[0.423635796919, -0.2192627293427], +[0.4286152474242, -0.2196799696597], +[0.4335853228505, -0.2201064263673], +[0.4385459262185, -0.2205423244738], +[0.4434969645665, -0.2209878975069], +[0.4484383493675, -0.2214433878104], +[0.4533699969772, -0.2219090468424], +[0.4582918291173, -0.2223851354737], +[0.4632037733945, -0.2228719242861], +[0.4681057638583, -0.2233696938665], +[0.4729977415981, -0.2238787350953], +[0.477879655383, -0.2243993494257], +[0.4827514623448, -0.224931849151], +[0.4876131287059, -0.2254765576548], +[0.492464630554, -0.2260338096409], +[0.4973059546626, -0.2266039513375], +[0.5021370993601, -0.2271873406687], +[0.5069580754453, -0.2277843473894], +[0.5117689071492, -0.2283953531742], +[0.5165696331415, -0.2290207516536], +[0.5213603075785, -0.2296609483893], +[0.5261410011889, -0.2303163607789], +[0.5309118023922, -0.2309874178806], +[0.5356728184427, -0.2316745601475], +[0.5404241765912, -0.2323782390608], +[0.5451660252535, -0.233098916651], +[0.5498985351729, -0.2338370648965], +[0.5546219005642, -0.2345931649879], +[0.5593358465004, -0.2353672146094], +[-0.556942061102, -0.2312213051335], +[-0.5522098200365, -0.23044747019], +[-0.5474684211774, -0.2296913394647], +[-0.542718252251, -0.2289528647209], +[-0.5379591281094, -0.2282315853326], +[-0.5331908855137, -0.227527049251], +[-0.5284133821005, -0.226838813682], +[-0.5236264953295, -0.2261664456426], +[-0.5188301214238, -0.2255095224082], +[-0.5140241743159, -0.2248676318596], +[-0.5092085846067, -0.2242403727388], +[-0.5043832985458, -0.2236273548226], +[-0.4995482770393, -0.2230281990243], +[-0.4947034946904, -0.2224425374305], +[-0.4898489388747, -0.2218700132812], +[-0.4849846088556, -0.2213102809024], +[-0.4801105149387, -0.2207630055952], +[-0.4752266776684, -0.2202278634901], +[-0.4703331270658, -0.2197045413714], +[-0.465429901909, -0.2191927364758], +[-0.4605170490532, -0.2186921562722], +[-0.4555946227928, -0.2182025182237], +[-0.4506626842609, -0.2177235495388], +[-0.445721300868, -0.2172549869112], +[-0.4407705457762, -0.2167965762553], +[-0.435810497408, -0.2163480724354], +[-0.4308412389892, -0.2159092389942], +[-0.4258628581219, -0.2154798478806], +[-0.4208754463883, -0.2150596791781], +[-0.4158790989818, -0.2146485208368], +[-0.410873914365, -0.214246168408], +[-0.4058599939524, -0.2138524247836], +[-0.4008374418163, -0.2134670999405], +[-0.3958063644146, -0.2130900106912], +[-0.3907668703389, -0.2127209804397], +[-0.3857190700821, -0.2123598389449], +[-0.380663075823, -0.2120064220902], +[-0.3755990012285, -0.2116605716598], +[-0.3705269612698, -0.2113221351232], +[-0.3654470720547, -0.2109909654253], +[-0.3603594506718, -0.2106669207852], +[-0.3552642150482, -0.2103498645006], +[-0.3501614838177, -0.2100396647603], +[-0.3450513762007, -0.2097361944629], +[-0.3399340118935, -0.209439331043], +[-0.3348095109667, -0.2091489563035], +[-0.329677993773, -0.2088649562542], +[-0.3245395808616, -0.2085872209574], +[-0.3193943929012, -0.2083156443795], +[-0.3142425506095, -0.2080501242476], +[-0.3090841746885, -0.2077905619136], +[-0.3039193857663, -0.2075368622219], +[-0.2987483043441, -0.2072889333846], +[-0.2935710507483, -0.20704668686], +[-0.2883877450874, -0.2068100372375], +[-0.2831985072128, -0.2065789021264], +[-0.2780034566843, -0.2063532020502], +[-0.272802712739, -0.2061328603448], +[-0.2675963942633, -0.2059178030614], +[-0.2623846197691, -0.2057079588729], +[-0.2571675073718, -0.2055032589854], +[-0.2519451747719, -0.2053036370525], +[-0.246717739239, -0.2051090290939], +[-0.2414853175983, -0.2049193734171], +[-0.2362480262186, -0.2047346105429], +[-0.2310059810035, -0.2045546831343], +[-0.2257592973834, -0.2043795359277], +[-0.2205080903103, -0.2042091156678], +[-0.2152524742535, -0.2040433710455], +[-0.2099925631972, -0.2038822526382], +[-0.2047284706393, -0.2037257128527], +[-0.1994603095918, -0.203573705871], +[-0.1941881925821, -0.2034261875983], +[-0.1889122316562, -0.2032831156133], +[-0.1836325383815, -0.2031444491214], +[-0.1783492238529, -0.203010148909], +[-0.1730623986965, -0.2028801773008], +[-0.1677721730781, -0.2027544981188], +[-0.1624786567092, -0.2026330766428], +[-0.1571819588557, -0.2025158795738], +[-0.1518821883465, -0.2024028749981], +[-0.1465794535826, -0.2022940323539], +[-0.1412738625478, -0.2021893223989], +[-0.1359655228186, -0.2020887171801], +[-0.1306545415756, -0.201992190005], +[-0.1253410256152, -0.2018997154138], +[-0.1200250813612, -0.2018112691539], +[-0.1147068148782, -0.2017268281549], +[-0.109386331883, -0.2016463705054], +[-0.1040637377592, -0.2015698754316], +[-0.09873913756999, -0.2014973232759], +[-0.09341263607222, -0.2014286954778], +[-0.08808433773056, -0.2013639745557], +[-0.08275434673189, -0.2013031440895], +[-0.07742276699999, -0.2012461887047], +[-0.07208970221042, -0.2011930940579], +[-0.06675525580563, -0.2011438468222], +[-0.06141953101026, -0.201098434675], +[-0.05608263084661, -0.2010568462858], +[-0.05074465815027, -0.2010190713057], +[-0.04540571558588, -0.2009851003573], +[-0.04006590566306, -0.2009549250261], +[-0.03472533075239, -0.2009285378521], +[-0.02938409310159, -0.2009059323232], +[-0.02404229485165, -0.200887102869], +[-0.0187000380532, -0.2008720448551], +[-0.0133574246828, -0.2008607545796], +[-0.008014556659352, -0.2008532292688], +[-0.002671535860571, -0.200849467075], +[0.002671535860572, -0.200849467075], +[0.008014556659353, -0.2008532292688], +[0.0133574246828, -0.2008607545796], +[0.0187000380532, -0.2008720448551], +[0.02404229485165, -0.200887102869], +[0.02938409310159, -0.2009059323232], +[0.03472533075239, -0.2009285378521], +[0.04006590566306, -0.2009549250261], +[0.04540571558588, -0.2009851003573], +[0.05074465815027, -0.2010190713057], +[0.05608263084661, -0.2010568462858], +[0.06141953101026, -0.201098434675], +[0.06675525580563, -0.2011438468222], +[0.07208970221042, -0.2011930940579], +[0.07742276699999, -0.2012461887047], +[0.08275434673189, -0.2013031440895], +[0.08808433773056, -0.2013639745557], +[0.09341263607222, -0.2014286954778], +[0.09873913756999, -0.2014973232759], +[0.1040637377592, -0.2015698754316], +[0.109386331883, -0.2016463705054], +[0.1147068148782, -0.2017268281549], +[0.1200250813613, -0.2018112691539], +[0.1253410256152, -0.2018997154138], +[0.1306545415756, -0.201992190005], +[0.1359655228186, -0.2020887171801], +[0.1412738625478, -0.2021893223989], +[0.1465794535826, -0.2022940323539], +[0.1518821883465, -0.2024028749981], +[0.1571819588557, -0.2025158795738], +[0.1624786567092, -0.2026330766428], +[0.1677721730781, -0.2027544981188], +[0.1730623986965, -0.2028801773008], +[0.1783492238529, -0.203010148909], +[0.1836325383817, -0.2031444491214], +[0.1889122316562, -0.2032831156133], +[0.1941881925821, -0.2034261875983], +[0.1994603095918, -0.203573705871], +[0.2047284706393, -0.2037257128527], +[0.2099925631972, -0.2038822526382], +[0.2152524742535, -0.2040433710455], +[0.2205080903103, -0.2042091156678], +[0.2257592973834, -0.2043795359277], +[0.2310059810035, -0.2045546831343], +[0.2362480262186, -0.2047346105429], +[0.2414853175983, -0.2049193734171], +[0.246717739239, -0.2051090290939], +[0.2519451747719, -0.2053036370525], +[0.2571675073718, -0.2055032589854], +[0.2623846197691, -0.2057079588729], +[0.2675963942633, -0.2059178030614], +[0.272802712739, -0.2061328603448], +[0.2780034566843, -0.2063532020502], +[0.2831985072128, -0.2065789021264], +[0.2883877450874, -0.2068100372375], +[0.2935710507483, -0.20704668686], +[0.2987483043441, -0.2072889333846], +[0.3039193857663, -0.2075368622219], +[0.3090841746885, -0.2077905619135], +[0.3142425506096, -0.2080501242476], +[0.3193943929012, -0.2083156443795], +[0.3245395808616, -0.2085872209574], +[0.329677993773, -0.2088649562542], +[0.3348095109667, -0.2091489563035], +[0.3399340118935, -0.209439331043], +[0.3450513762007, -0.2097361944629], +[0.3501614838177, -0.2100396647603], +[0.3552642150482, -0.2103498645006], +[0.3603594506718, -0.2106669207852], +[0.3654470720547, -0.2109909654253], +[0.3705269612698, -0.2113221351232], +[0.3755990012285, -0.2116605716598], +[0.3806630758232, -0.2120064220901], +[0.3857190700821, -0.2123598389449], +[0.3907668703389, -0.2127209804397], +[0.3958063644146, -0.2130900106912], +[0.4008374418163, -0.2134670999405], +[0.4058599939524, -0.2138524247836], +[0.410873914365, -0.214246168408], +[0.4158790989818, -0.2146485208368], +[0.4208754463883, -0.2150596791781], +[0.4258628581219, -0.2154798478806], +[0.4308412389892, -0.2159092389942], +[0.435810497408, -0.2163480724354], +[0.4407705457762, -0.2167965762553], +[0.445721300868, -0.2172549869112], +[0.4506626842609, -0.2177235495388], +[0.4555946227928, -0.2182025182237], +[0.4605170490532, -0.2186921562722], +[0.465429901909, -0.2191927364758], +[0.4703331270658, -0.2197045413714], +[0.4752266776684, -0.2202278634901], +[0.4801105149387, -0.2207630055952], +[0.4849846088556, -0.2213102809024], +[0.4898489388747, -0.2218700132812], +[0.4947034946904, -0.2224425374305], +[0.4995482770393, -0.2230281990243], +[0.5043832985458, -0.2236273548226], +[0.5092085846067, -0.2242403727388], +[0.5140241743159, -0.2248676318596], +[0.5188301214238, -0.2255095224082], +[0.5236264953294, -0.2261664456427], +[0.5284133821005, -0.2268388136821], +[0.5331908855137, -0.2275270492511], +[0.5379591281094, -0.2282315853326], +[0.542718252251, -0.2289528647209], +[0.5474684211774, -0.2296913394647], +[0.5522098200365, -0.23044747019], +[0.5569420610931, -0.2312213051811], +[-0.5545366638724, -0.2270555951148], +[-0.5497867167046, -0.2262818386496], +[-0.5450278687087, -0.225525880634], +[-0.5402606116511, -0.2247872951186], +[-0.5354847689322, -0.2240656406942], +[-0.5307001844333, -0.2233604839568], +[-0.52590672158, -0.2226714001299], +[-0.5211042623872, -0.2219979735813], +[-0.5162927064963, -0.2213397982406], +[-0.5114719702164, -0.2206964779273], +[-0.5066419855751, -0.2200676265958], +[-0.501802699387, -0.2194528685069], +[-0.4969540723462, -0.218851838333], +[-0.4920960781452, -0.2182641812041], +[-0.4872287026255, -0.2176895527027], +[-0.4823519429617, -0.2171276188125], +[-0.4774658068804, -0.2165780558295], +[-0.4725703119162, -0.2160405502377], +[-0.4676654847042, -0.2155147985585], +[-0.4627513603091, -0.2150005071745], +[-0.4578279815921, -0.2144973921351], +[-0.4528953986128, -0.2140051789455], +[-0.4479536680666, -0.2135236023434], +[-0.4430028527566, -0.2130524060662], +[-0.4380430210977, -0.2125913426106], +[-0.4330742466528, -0.2121401729887], +[-0.4280966076989, -0.2116986664795], +[-0.4231101868222, -0.2112666003809], +[-0.4181150705401, -0.2108437597609], +[-0.4131113489493, -0.2104299372111], +[-0.4080991153984, -0.2100249326019], +[-0.4030784661834, -0.2096285528425], +[-0.3980495002644, -0.2092406116433], +[-0.3930123190039, -0.2088609292848], +[-0.3879670259226, -0.2084893323907], +[-0.3829137264742, -0.2081256537065], +[-0.3778525278368, -0.207769731885], +[-0.3727835387188, -0.207421411277], +[-0.3677068691815, -0.2070805417282], +[-0.362622630473, -0.206746978383], +[-0.3575309348765, -0.2064205814946], +[-0.3524318955697, -0.2061012162407], +[-0.3473256264952, -0.2057887525468], +[-0.3422122422417, -0.2054830649142], +[-0.3370918579337, -0.205184032256], +[-0.3319645891312, -0.2048915377372], +[-0.3268305517374, -0.2046054686226], +[-0.3216898619132, -0.2043257161291], +[-0.3165426360002, -0.2040521752845], +[-0.311388990449, -0.2037847447914], +[-0.3062290417552, -0.2035233268966], +[-0.3010629063993, -0.2032678272659], +[-0.2958907007937, -0.2030181548633], +[-0.2907125412333, -0.2027742218359], +[-0.2855285438519, -0.2025359434031], +[-0.2803388245813, -0.2023032377498], +[-0.2751434991163, -0.2020760259253], +[-0.2699426828818, -0.2018542317451], +[-0.2647364910044, -0.2016377816976], +[-0.2595250382862, -0.2014266048545], +[-0.2543084391828, -0.2012206327846], +[-0.2490868077828, -0.2010197994723], +[-0.2438602577911, -0.200824041238], +[-0.2386289025134, -0.2006332966634], +[-0.2333928548439, -0.2004475065194], +[-0.2281522272544, -0.2002666136965], +[-0.2229071317859, -0.2000905631394], +[-0.2176576800416, -0.1999193017839], +[-0.2124039831814, -0.1997527784959], +[-0.207146151919, -0.1995909440145], +[-0.2018842965186, -0.1994337508962], +[-0.1966185267952, -0.1992811534627], +[-0.1913489521142, -0.19913310775], +[-0.1860756813934, -0.1989895714612], +[-0.1807988231056, -0.1988505039196], +[-0.1755184852821, -0.1987158660256], +[-0.1702347755179, -0.1985856202149], +[-0.1649478009766, -0.1984597304184], +[-0.1596576683973, -0.1983381620244], +[-0.1543644841017, -0.1982208818425], +[-0.1490683540015, -0.1981078580691], +[-0.1437693836076, -0.1979990602548], +[-0.1384676780389, -0.1978944592731], +[-0.1331633420323, -0.197794027291], +[-0.1278564799528, -0.197697737741], +[-0.1225471958042, -0.1976055652942], +[-0.117235593241, -0.1975174858353], +[-0.1119217755794, -0.197433476439], +[-0.1066058458099, -0.1973535153469], +[-0.1012879066098, -0.1972775819467], +[-0.09596806035587, -0.1972056567521], +[-0.09064640913762, -0.1971377213838], +[-0.08532305477094, -0.197073758552], +[-0.07999809881181, -0.1970137520398], +[-0.07467164257031, -0.1969576866878], +[-0.06934378712497, -0.1969055483798], +[-0.06401463333724, -0.1968573240291], +[-0.05868428186624, -0.196813001567], +[-0.05335283318363, -0.1967725699305], +[-0.04802038758864, -0.196736019053], +[-0.04268704522335, -0.196703339854], +[-0.03735290608799, -0.1966745242315], +[-0.0320180700564, -0.1966495650538], +[-0.02668263689163, -0.1966284561535], +[-0.02134670626159, -0.1966111923215], +[-0.01601037775478, -0.1965977693023], +[-0.01067375089612, -0.1965881837902], +[-0.005336925162749, -0.1965824334259], +[-3.05728235533e-15, -0.196580516795], +[0.00533692516275, -0.1965824334259], +[0.01067375089612, -0.1965881837902], +[0.01601037775478, -0.1965977693023], +[0.02134670626159, -0.1966111923215], +[0.02668263689163, -0.1966284561535], +[0.0320180700564, -0.1966495650538], +[0.03735290608799, -0.1966745242315], +[0.04268704522335, -0.196703339854], +[0.04802038758864, -0.196736019053], +[0.05335283318363, -0.1967725699305], +[0.05868428186625, -0.196813001567], +[0.06401463333724, -0.1968573240291], +[0.06934378712497, -0.1969055483798], +[0.07467164257031, -0.1969576866878], +[0.07999809881181, -0.1970137520398], +[0.08532305477094, -0.197073758552], +[0.09064640913762, -0.1971377213838], +[0.09596806035587, -0.1972056567521], +[0.1012879066098, -0.1972775819467], +[0.1066058458099, -0.1973535153469], +[0.1119217755794, -0.197433476439], +[0.117235593241, -0.1975174858353], +[0.1225471958042, -0.1976055652942], +[0.1278564799528, -0.197697737741], +[0.1331633420323, -0.197794027291], +[0.1384676780389, -0.1978944592731], +[0.1437693836076, -0.1979990602548], +[0.1490683540015, -0.1981078580691], +[0.1543644841017, -0.1982208818425], +[0.1596576683973, -0.1983381620244], +[0.1649478009766, -0.1984597304184], +[0.1702347755179, -0.1985856202149], +[0.1755184852821, -0.1987158660256], +[0.1807988231056, -0.1988505039196], +[0.1860756813934, -0.1989895714612], +[0.1913489521142, -0.19913310775], +[0.1966185267952, -0.1992811534627], +[0.2018842965186, -0.1994337508962], +[0.207146151919, -0.1995909440145], +[0.2124039831814, -0.1997527784959], +[0.2176576800416, -0.1999193017839], +[0.2229071317859, -0.2000905631394], +[0.2281522272544, -0.2002666136965], +[0.2333928548439, -0.2004475065194], +[0.2386289025134, -0.2006332966634], +[0.2438602577911, -0.200824041238], +[0.2490868077828, -0.2010197994723], +[0.2543084391828, -0.2012206327846], +[0.2595250382862, -0.2014266048545], +[0.2647364910044, -0.2016377816976], +[0.2699426828818, -0.2018542317451], +[0.2751434991163, -0.2020760259253], +[0.2803388245813, -0.2023032377498], +[0.2855285438519, -0.2025359434031], +[0.2907125412333, -0.2027742218359], +[0.2958907007937, -0.2030181548633], +[0.3010629063993, -0.2032678272659], +[0.3062290417552, -0.2035233268966], +[0.311388990449, -0.2037847447914], +[0.3165426360002, -0.2040521752845], +[0.3216898619132, -0.2043257161291], +[0.3268305517374, -0.2046054686226], +[0.3319645891312, -0.2048915377372], +[0.3370918579337, -0.205184032256], +[0.3422122422417, -0.2054830649142], +[0.3473256264952, -0.2057887525468], +[0.3524318955697, -0.2061012162407], +[0.3575309348765, -0.2064205814946], +[0.362622630473, -0.206746978383], +[0.3677068691815, -0.2070805417282], +[0.3727835387188, -0.207421411277], +[0.3778525278368, -0.207769731885], +[0.3829137264742, -0.2081256537065], +[0.3879670259226, -0.2084893323907], +[0.3930123190039, -0.2088609292848], +[0.3980495002644, -0.2092406116433], +[0.4030784661834, -0.2096285528425], +[0.4080991153985, -0.2100249326019], +[0.4131113489493, -0.2104299372111], +[0.4181150705401, -0.2108437597609], +[0.4231101868222, -0.2112666003809], +[0.4280966076989, -0.2116986664795], +[0.4330742466528, -0.2121401729887], +[0.4380430210977, -0.2125913426106], +[0.4430028527566, -0.2130524060662], +[0.4479536680666, -0.2135236023434], +[0.4528953986128, -0.2140051789455], +[0.4578279815921, -0.2144973921351], +[0.4627513603091, -0.2150005071745], +[0.4676654847042, -0.2155147985585], +[0.4725703119162, -0.2160405502377], +[0.4774658068804, -0.2165780558295], +[0.4823519429617, -0.2171276188125], +[0.4872287026256, -0.2176895527026], +[0.4920960781452, -0.2182641812041], +[0.4969540723463, -0.218851838333], +[0.501802699387, -0.2194528685069], +[0.5066419855751, -0.2200676265958], +[0.5114719702164, -0.2206964779273], +[0.5162927064963, -0.2213397982406], +[0.5211042623872, -0.2219979735813], +[0.5259067215801, -0.2226714001299], +[0.5307001844333, -0.2233604839569], +[0.5354847689322, -0.2240656406942], +[0.5402606116511, -0.2247872951186], +[0.5450278687087, -0.225525880634], +[0.5497867167046, -0.2262818386496], +[0.5545373536252, -0.2270556178428], +[-0.5521207088042, -0.222869866229], +[-0.5473528458469, -0.2220967471378], +[-0.542577110865, -0.2213411588588], +[-0.5377933153299, -0.2206026711629], +[-0.5330012907081, -0.2198808606311], +[-0.5282008876386, -0.2191753113306], +[-0.5233919750813, -0.2184856153888], +[-0.518574439449, -0.2178113734726], +[-0.513748183731, -0.217152195179], +[-0.5089131266184, -0.2165076993444], +[-0.5040692016371, -0.2158775142794], +[-0.4992163562962, -0.2152612779365], +[-0.4943545512547, -0.2146586380174], +[-0.4894837595133, -0.2140692520266], +[-0.484603965631, -0.2134927872772], +[-0.479715164973, -0.2129289208547], +[-0.474817362988, -0.2123773395451], +[-0.4699105745181, -0.2118377397305], +[-0.4649948231413, -0.2113098272591], +[-0.4600701405472, -0.2107933172921], +[-0.4551365659445, -0.2102879341312], +[-0.4501941455024, -0.2097934110318], +[-0.445242931822, -0.2093094900028], +[-0.4402829834394, -0.2088359215973], +[-0.4353143643587, -0.2083724646956], +[-0.4303371436131, -0.2079188862833], +[-0.4253513948542, -0.2074749612254], +[-0.420357195967, -0.2070404720397], +[-0.4153546287102, -0.2066152086687], +[-0.4103437783807, -0.2061989682524], +[-0.4053247335, -0.2057915549037], +[-0.4002975855224, -0.2053927794855], +[-0.3952624285629, -0.2050024593916], +[-0.3902193591447, -0.2046204183312], +[-0.3851684759639, -0.204246486118], +[-0.380109879671, -0.2038804984647], +[-0.3750436726688, -0.2035222967809], +[-0.3699699589242, -0.2031717279783], +[-0.3648888437941, -0.2028286442802], +[-0.3598004338643, -0.202492903037], +[-0.3547048368002, -0.2021643665469], +[-0.3496021612092, -0.2018429018834], +[-0.3444925165131, -0.2015283807273], +[-0.3393760128307, -0.2012206792052], +[-0.3342527608691, -0.2009196777331], +[-0.3291228718242, -0.2006252608658], +[-0.3239864572886, -0.2003373171519], +[-0.3188436291672, -0.2000557389937], +[-0.3136944995993, -0.1997804225126], +[-0.308539180888, -0.1995112674199], +[-0.3033777854344, -0.1992481768916], +[-0.2982104256788, -0.1989910574493], +[-0.2930372140454, -0.1987398188447], +[-0.2878582628937, -0.1984943739491], +[-0.282673684473, -0.1982546386477], +[-0.2774835908816, -0.1980205317373], +[-0.2722880940301, -0.1977919748287], +[-0.2670873056081, -0.1975688922532], +[-0.2618813370544, -0.1973512109721], +[-0.25667029953, -0.1971388604913], +[-0.2514543038952, -0.196931772778], +[-0.2462334606878, -0.1967298821818], +[-0.2410078801052, -0.1965331253589], +[-0.235777671988, -0.1963414411993], +[-0.2305429458067, -0.1961547707573], +[-0.2253038106499, -0.1959730571848], +[-0.220060375214, -0.1957962456678], +[-0.2148127477961, -0.1956242833649], +[-0.209561036287, -0.1954571193495], +[-0.2043053481672, -0.1952947045536], +[-0.199045790503, -0.1951369917146], +[-0.1937824699451, -0.1949839353241], +[-0.1885154927281, -0.1948354915794], +[-0.1832449646707, -0.1946916183369], +[-0.1779709911781, -0.1945522750674], +[-0.1726936772441, -0.1944174228139], +[-0.1674131274553, -0.194287024151], +[-0.162129445996, -0.1941610431464], +[-0.1568427366529, -0.1940394453242], +[-0.1515531028225, -0.1939221976294], +[-0.1462606475173, -0.1938092683952], +[-0.1409654733742, -0.1937006273105], +[-0.1356676826622, -0.1935962453905], +[-0.1303673772924, -0.1934960949476], +[-0.1250646588265, -0.193400149564], +[-0.1197596284878, -0.1933083840667], +[-0.1144523871713, -0.1932207745022], +[-0.1091430354548, -0.1931372981138], +[-0.1038316736105, -0.1930579333202], +[-0.09851840161703, -0.192982659694], +[-0.09320331917118, -0.1929114579433], +[-0.08788652570098, -0.192844309893], +[-0.08256812037838, -0.1927811984677], +[-0.07724820213248, -0.1927221076761], +[-0.07192686966297, -0.1926670225959], +[-0.06660422145389, -0.1926159293601], +[-0.0612803557875, -0.1925688151443], +[-0.05595537075849, -0.1925256681547], +[-0.05062936428828, -0.1924864776175], +[-0.04530243413953, -0.1924512337691], +[-0.03997467793088, -0.1924199278472], +[-0.03464619315154, -0.1923925520827], +[-0.02931707717656, -0.192369099693], +[-0.02398742728155, -0.1923495648758], +[-0.01865734065796, -0.1923339428035], +[-0.01332691442824, -0.1923222296194], +[-0.007996245661139, -0.192314422434], +[-0.002665431386976, -0.1923105193223], +[0.002665431386977, -0.1923105193223], +[0.007996245661139, -0.192314422434], +[0.01332691442824, -0.1923222296194], +[0.01865734065797, -0.1923339428035], +[0.02398742728154, -0.1923495648757], +[0.02931707717656, -0.192369099693], +[0.03464619315154, -0.1923925520827], +[0.03997467793084, -0.1924199278471], +[0.04530243413954, -0.1924512337691], +[0.05062936428828, -0.1924864776175], +[0.05595537075849, -0.1925256681547], +[0.0612803557875, -0.1925688151443], +[0.06660422145389, -0.1926159293601], +[0.07192686966297, -0.1926670225959], +[0.07724820213248, -0.1927221076761], +[0.08256812037838, -0.1927811984677], +[0.08788652570098, -0.192844309893], +[0.09320331917118, -0.1929114579433], +[0.09851840161703, -0.192982659694], +[0.1038316736105, -0.1930579333202], +[0.1091430354548, -0.1931372981138], +[0.1144523871713, -0.1932207745022], +[0.1197596284878, -0.1933083840667], +[0.1250646588265, -0.193400149564], +[0.1303673772924, -0.1934960949476], +[0.1356676826622, -0.1935962453905], +[0.1409654733742, -0.1937006273105], +[0.1462606475173, -0.1938092683952], +[0.1515531028225, -0.1939221976294], +[0.1568427366529, -0.1940394453242], +[0.162129445996, -0.1941610431464], +[0.1674131274553, -0.194287024151], +[0.1726936772441, -0.1944174228139], +[0.1779709911781, -0.1945522750674], +[0.1832449646707, -0.1946916183369], +[0.1885154927281, -0.1948354915794], +[0.1937824699451, -0.1949839353241], +[0.199045790503, -0.1951369917146], +[0.2043053481672, -0.1952947045536], +[0.209561036287, -0.1954571193495], +[0.2148127477961, -0.1956242833649], +[0.220060375214, -0.1957962456678], +[0.2253038106499, -0.1959730571848], +[0.2305429458067, -0.1961547707573], +[0.235777671988, -0.1963414411993], +[0.2410078801052, -0.1965331253589], +[0.2462334606878, -0.1967298821818], +[0.2514543038952, -0.196931772778], +[0.25667029953, -0.1971388604913], +[0.2618813370544, -0.1973512109721], +[0.2670873056081, -0.1975688922532], +[0.2722880940301, -0.1977919748287], +[0.2774835908816, -0.1980205317373], +[0.282673684473, -0.1982546386477], +[0.2878582628937, -0.1984943739491], +[0.2930372140454, -0.1987398188447], +[0.2982104256788, -0.1989910574493], +[0.3033777854344, -0.1992481768916], +[0.308539180888, -0.1995112674199], +[0.3136944995993, -0.1997804225126], +[0.3188436291672, -0.2000557389937], +[0.3239864572886, -0.2003373171519], +[0.3291228718242, -0.2006252608658], +[0.3342527608691, -0.2009196777331], +[0.3393760128307, -0.2012206792052], +[0.3444925165131, -0.2015283807273], +[0.3496021612092, -0.2018429018834], +[0.3547048368002, -0.2021643665469], +[0.3598004338643, -0.202492903037], +[0.3648888437941, -0.2028286442802], +[0.3699699589242, -0.2031717279783], +[0.3750436726688, -0.2035222967809], +[0.380109879671, -0.2038804984647], +[0.3851684759639, -0.204246486118], +[0.3902193591447, -0.2046204183312], +[0.3952624285629, -0.2050024593916], +[0.4002975855224, -0.2053927794855], +[0.4053247335, -0.2057915549037], +[0.4103437783807, -0.2061989682524], +[0.4153546287102, -0.2066152086687], +[0.420357195967, -0.2070404720397], +[0.4253513948542, -0.2074749612254], +[0.4303371436131, -0.2079188862833], +[0.4353143643587, -0.2083724646956], +[0.4402829834394, -0.2088359215973], +[0.445242931822, -0.2093094900028], +[0.4501941455024, -0.2097934110318], +[0.4551365659445, -0.2102879341312], +[0.4600701405472, -0.2107933172921], +[0.4649948231413, -0.2113098272591], +[0.4699105745181, -0.2118377397305], +[0.474817362988, -0.2123773395451], +[0.479715164973, -0.2129289208547], +[0.484603965631, -0.2134927872772], +[0.4894837595132, -0.2140692520266], +[0.4943545512548, -0.2146586380174], +[0.4992163562962, -0.2152612779365], +[0.5040692016371, -0.2158775142794], +[0.5089131266184, -0.2165076993444], +[0.513748183731, -0.217152195179], +[0.518574439449, -0.2178113734726], +[0.5233919750813, -0.2184856153888], +[0.5282008876386, -0.2191753113306], +[0.5330012907081, -0.2198808606312], +[0.5377933153299, -0.2206026711629], +[0.542577110865, -0.2213411588588], +[0.5473528458469, -0.2220967471378], +[0.5521207088042, -0.222869866229], +[-0.5496929903026, -0.2186649344378], +[-0.5449084538159, -0.217892654596], +[-0.5401163732926, -0.2171376271777], +[-0.5353165690963, -0.2163994392401], +[-0.5305088803103, -0.215677684234], +[-0.5256931639881, -0.2149719626249], +[-0.5208692943787, -0.2142818824235], +[-0.5160371621353, -0.2136070596304], +[-0.5111966735151, -0.2129471186016], +[-0.5063477495812, -0.21230169234], +[-0.5014903254084, -0.2116704227198], +[-0.4966243493029, -0.2110529606501], +[-0.491749782037, -0.210448966183], +[-0.486866596105, -0.2098581085725], +[-0.4819747750018, -0.2092800662894], +[-0.4770743125269, -0.2087145269977], +[-0.4721652121154, -0.208161187497], +[-0.4672474861981, -0.2076197536359], +[-0.4623211555892, -0.2070899401995], +[-0.4573862489045, -0.2065714707756], +[-0.4524428020081, -0.2060640776036], +[-0.4474908574884, -0.2055675014074], +[-0.4425304641628, -0.2050814912165], +[-0.4375616766098, -0.2046058041777], +[-0.4325845547285, -0.2041402053588], +[-0.4275991633238, -0.2036844675471], +[-0.4226055717173, -0.2032383710439], +[-0.4176038533819, -0.2028017034566], +[-0.4125940855993, -0.2023742594902], +[-0.4075763491401, -0.201955840738], +[-0.4025507279638, -0.2015462554747], +[-0.3975173089395, -0.20114531845], +[-0.3924761815844, -0.2007528506857], +[-0.3874274378206, -0.2003686792761], +[-0.3823711717499, -0.19999263719], +[-0.3773074794388, -0.1996245630819], +[-0.3722364587264, -0.1992643011006], +[-0.3671582090402, -0.1989117007078], +[-0.3620728312264, -0.1985666164996], +[-0.3569804273936, -0.1982289080328], +[-0.3518811007662, -0.1978984396568], +[-0.34677495555, -0.1975750803503], +[-0.3416620968066, -0.1972587035632], +[-0.3365426303383, -0.1969491870637], +[-0.3314166625807, -0.1966464127907], +[-0.3262843005043, -0.1963502667106], +[-0.3211456515234, -0.1960606386801], +[-0.3160008234121, -0.1957774223126], +[-0.310849924227, -0.1955005148508], +[-0.3056930622365, -0.1952298170429], +[-0.3005303458552, -0.1949652330242], +[-0.2953618835845, -0.1947066702024], +[-0.2901877839577, -0.1944540391481], +[-0.2850081554901, -0.1942072534888], +[-0.2798231066337, -0.1939662298075], +[-0.2746327457352, -0.1937308875451], +[-0.269437180999, -0.1935011489068], +[-0.264236520453, -0.1932769387718], +[-0.259030871918, -0.1930581846074], +[-0.25382034298, -0.192844816386], +[-0.248605040966, -0.1926367665054], +[-0.2433850729218, -0.1924339697128], +[-0.238160545593, -0.1922363630321], +[-0.2329315654076, -0.1920438856931], +[-0.227698238462, -0.1918564790651], +[-0.2224606705077, -0.1916740865923], +[-0.2172189669411, -0.1914966537325], +[-0.2119732327942, -0.1913241278979], +[-0.2067235727278, -0.1911564583989], +[-0.2014700910258, -0.1909935963902], +[-0.1962128915909, -0.1908354948191], +[-0.1909520779422, -0.1906821083762], +[-0.1856877532135, -0.1905333934482], +[-0.1804200201531, -0.1903893080728], +[-0.1751489811249, -0.1902498118959], +[-0.1698747381101, -0.1901148661303], +[-0.1645973927106, -0.1899844335166], +[-0.1593170461522, -0.1898584782857], +[-0.1540337992903, -0.1897369661233], +[-0.1487477526144, -0.189619864136], +[-0.1434590062554, -0.1895071408187], +[-0.1381676599919, -0.1893987660241], +[-0.1328738132586, -0.1892947109338], +[-0.1275775651536, -0.1891949480297], +[-0.1222790144486, -0.1890994510683], +[-0.1169782595972, -0.1890081950559], +[-0.1116753987455, -0.1889211562244], +[-0.1063705297425, -0.1888383120094], +[-0.1010637501504, -0.1887596410291], +[-0.09575515725654, -0.1886851230641], +[-0.09044484808465, -0.1886147390394], +[-0.08513291940692, -0.188548471006], +[-0.07981946775637, -0.1884863021253], +[-0.07450458943942, -0.1884282166532], +[-0.0691883805488, -0.1883741999263], +[-0.06387093697674, -0.1883242383481], +[-0.05855235442831, -0.1882783193773], +[-0.05323272843504, -0.1882364315165], +[-0.04791215436875, -0.1881985643016], +[-0.0425907274555, -0.1881647082928], +[-0.03726854278972, -0.1881348550662], +[-0.03194569534853, -0.1881089972062], +[-0.02662228000607, -0.1880871282993], +[-0.02129839154809, -0.1880692429279], +[-0.01597412468647, -0.1880553366661], +[-0.01064957407397, -0.1880454060753], +[-0.005324834318918, -0.1880394487019], +[-4.433059415229e-14, -0.1880374630741], +[0.005324834318919, -0.1880394487019], +[0.01064957407397, -0.1880454060753], +[0.01597412468647, -0.1880553366661], +[0.02129839154809, -0.1880692429279], +[0.02662228000607, -0.1880871282993], +[0.03194569534853, -0.1881089972062], +[0.03726854278972, -0.1881348550662], +[0.0425907274555, -0.1881647082928], +[0.04791215436875, -0.1881985643016], +[0.05323272843504, -0.1882364315165], +[0.05855235442831, -0.1882783193773], +[0.06387093697674, -0.1883242383481], +[0.0691883805488, -0.1883741999263], +[0.07450458943942, -0.1884282166532], +[0.07981946775637, -0.1884863021253], +[0.08513291940692, -0.188548471006], +[0.09044484808465, -0.1886147390394], +[0.09575515725655, -0.1886851230641], +[0.1010637501504, -0.1887596410291], +[0.1063705297425, -0.1888383120094], +[0.1116753987455, -0.1889211562244], +[0.1169782595972, -0.1890081950559], +[0.1222790144486, -0.1890994510683], +[0.1275775651536, -0.1891949480297], +[0.1328738132586, -0.1892947109338], +[0.1381676599919, -0.1893987660241], +[0.1434590062554, -0.1895071408187], +[0.1487477526144, -0.189619864136], +[0.1540337992903, -0.1897369661233], +[0.1593170461522, -0.1898584782857], +[0.1645973927106, -0.1899844335166], +[0.1698747381101, -0.1901148661303], +[0.1751489811249, -0.1902498118959], +[0.1804200201531, -0.1903893080728], +[0.1856877532135, -0.1905333934482], +[0.1909520779423, -0.1906821083762], +[0.1962128915909, -0.1908354948191], +[0.2014700910258, -0.1909935963902], +[0.2067235727278, -0.1911564583989], +[0.2119732327942, -0.1913241278979], +[0.2172189669411, -0.1914966537325], +[0.2224606705077, -0.1916740865923], +[0.227698238462, -0.1918564790651], +[0.2329315654076, -0.1920438856931], +[0.238160545593, -0.1922363630321], +[0.2433850729218, -0.1924339697128], +[0.248605040966, -0.1926367665054], +[0.25382034298, -0.192844816386], +[0.259030871918, -0.1930581846074], +[0.264236520453, -0.1932769387718], +[0.269437180999, -0.1935011489068], +[0.2746327457352, -0.1937308875451], +[0.2798231066337, -0.1939662298075], +[0.2850081554901, -0.1942072534888], +[0.2901877839577, -0.1944540391481], +[0.2953618835845, -0.1947066702024], +[0.3005303458552, -0.1949652330242], +[0.3056930622365, -0.1952298170429], +[0.310849924227, -0.1955005148508], +[0.3160008234121, -0.1957774223126], +[0.3211456515234, -0.1960606386801], +[0.3262843005043, -0.1963502667106], +[0.3314166625807, -0.1966464127907], +[0.3365426303383, -0.1969491870637], +[0.3416620968066, -0.1972587035632], +[0.34677495555, -0.1975750803503], +[0.3518811007662, -0.1978984396568], +[0.3569804273936, -0.1982289080328], +[0.3620728312264, -0.1985666164996], +[0.3671582090402, -0.1989117007078], +[0.3722364587264, -0.1992643011006], +[0.3773074794388, -0.1996245630819], +[0.3823711717499, -0.19999263719], +[0.3874274378215, -0.2003686792754], +[0.3924761815844, -0.2007528506857], +[0.3975173089395, -0.20114531845], +[0.4025507279638, -0.2015462554747], +[0.4075763491401, -0.201955840738], +[0.4125940855993, -0.2023742594902], +[0.4176038533819, -0.2028017034566], +[0.4226055717173, -0.2032383710439], +[0.4275991633238, -0.2036844675471], +[0.4325845547285, -0.2041402053588], +[0.4375616766098, -0.2046058041777], +[0.4425304641628, -0.2050814912165], +[0.4474908574884, -0.2055675014074], +[0.452442802008, -0.2060640776036], +[0.4573862489045, -0.2065714707756], +[0.4623211555892, -0.2070899401995], +[0.4672474861981, -0.2076197536359], +[0.4721652121154, -0.208161187497], +[0.4770743125269, -0.2087145269977], +[0.4819747750018, -0.2092800662894], +[0.486866596105, -0.2098581085725], +[0.491749782037, -0.210448966183], +[0.4966243493029, -0.2110529606501], +[0.5014903254084, -0.2116704227198], +[0.5063477495812, -0.21230169234], +[0.5111966735151, -0.2129471186016], +[0.5160371621353, -0.2136070596304], +[0.5208692943788, -0.2142818824235], +[0.5256931639881, -0.2149719626249], +[0.5305088803103, -0.215677684234], +[0.5353165690963, -0.2163994392401], +[0.5401163732926, -0.2171376271776], +[0.5449084538159, -0.217892654596], +[0.5496929903026, -0.2186649344378], +[-0.547254456239, -0.2144412695437], +[-0.5424537786234, -0.2136700033573], +[-0.5376458746434, -0.2129157223942], +[-0.5328305730312, -0.212178029936], +[-0.5280077200668, -0.2114565352781], +[-0.5231771788947, -0.2107508543011], +[-0.5183388288166, -0.2100606099618], +[-0.5134925645684, -0.2093854327065], +[-0.5086382955896, -0.2087249608125], +[-0.5037759452917, -0.2080788406633], +[-0.4989054503307, -0.2074467269627], +[-0.4940267598907, -0.2068282828934], +[-0.4891398349794, -0.206223180225], +[-0.4842446477431, -0.2056310993767], +[-0.4793411807999, -0.2050517294398], +[-0.474429426596, -0.2044847681647], +[-0.4695093867861, -0.2039299219151], +[-0.4645810716378, -0.2033869055966], +[-0.4596444994624, -0.2028554425599], +[-0.4546996960717, -0.2023352644842], +[-0.4497466942609, -0.2018261112441], +[-0.4447855333174, -0.2013277307604], +[-0.4398162585556, -0.2008398788406], +[-0.4348389208769, -0.2003623190088], +[-0.4298535763535, -0.1998948223287], +[-0.4248602858371, -0.1994371672196], +[-0.4198591145899, -0.1989891392702], +[-0.4148501319377, -0.1985505310476], +[-0.4098334109442, -0.1981211419061], +[-0.4048090281056, -0.1977007777952], +[-0.3997770630647, -0.197289251068], +[-0.3947375983424, -0.1968863802907], +[-0.3896907190879, -0.1964919900545], +[-0.3846365128443, -0.19610591079], +[-0.3795750693302, -0.1957279785842], +[-0.3745064802359, -0.1953580350012], +[-0.3694308390336, -0.1949959269069], +[-0.3643482408003, -0.1946415062975], +[-0.3592587820537, -0.1942946301318], +[-0.3541625605983, -0.1939551601691], +[-0.349059675384, -0.1936229628102], +[-0.3439502263738, -0.1932979089438], +[-0.338834314421, -0.1929798737975], +[-0.333712041156, -0.1926687367932], +[-0.3285835088809, -0.1923643814072], +[-0.3234488204724, -0.192066695035], +[-0.3183080792916, -0.1917755688606], +[-0.3131613891011, -0.1914908977303], +[-0.3080088539882, -0.1912125800308], +[-0.3028505782943, -0.190940517572], +[-0.2976866665499, -0.1906746154738], +[-0.292517223415, -0.190414782057], +[-0.2873423536242, -0.1901609287382], +[-0.2821621619364, -0.1899129699291], +[-0.2769767530892, -0.1896708229393], +[-0.2717862317568, -0.1894344078829], +[-0.266590702512, -0.1892036475883], +[-0.2613902697919, -0.1889784675128], +[-0.256185037866, -0.1887587956587], +[-0.250975110809, -0.1885445624948], +[-0.2457605924745, -0.188335700879], +[-0.2405415864732, -0.188132145986], +[-0.2353181961524, -0.1879338352363], +[-0.2300905245784, -0.1877407082292], +[-0.224858674521, -0.1875527066779], +[-0.2196227484402, -0.1873697743478], +[-0.2143828484746, -0.187191856997], +[-0.2091390764316, -0.1870189023197], +[-0.2038915337797, -0.1868508598914], +[-0.198640321642, -0.1866876811173], +[-0.1933855407909, -0.1865293191819], +[-0.1881272916454, -0.186375729002], +[-0.1828656742681, -0.1862268671803], +[-0.1776007883647, -0.1860826919629], +[-0.1723327332838, -0.1859431631966], +[-0.1670616080184, -0.1858082422899], +[-0.1617875112083, -0.1856778921748], +[-0.1565105411425, -0.185552077271], +[-0.1512307957642, -0.1854307634506], +[-0.1459483726751, -0.1853139180063], +[-0.1406633691409, -0.1852015096194], +[-0.1353758820985, -0.1850935083304], +[-0.1300860081619, -0.1849898855107], +[-0.124793843631, -0.1848906138355], +[-0.1194994844989, -0.184795667259], +[-0.1142030264615, -0.1847050209896], +[-0.1089045649261, -0.1846186514675], +[-0.1036041950221, -0.1845365363428], +[-0.09830201161046, -0.1844586544558], +[-0.09299810929472, -0.1843849858171], +[-0.08769258243213, -0.1843155115901], +[-0.082385525145, -0.1842502140741], +[-0.07707703133248, -0.1841890766883], +[-0.07176719468261, -0.1841320839572], +[-0.06645610868475, -0.184079221497], +[-0.06114386664214, -0.1840304760028], +[-0.0558305616848, -0.1839858352372], +[-0.05051628678259, -0.1839452880193], +[-0.04520113475852, -0.1839088242152], +[-0.03988519830222, -0.183876434729], +[-0.0345685699835, -0.1838481114952], +[-0.02925134226618, -0.1838238474715], +[-0.02393360752197, -0.1838036366329], +[-0.01861545804443, -0.1837874739663], +[-0.01329698606306, -0.1837753554664], +[-0.007978283757516, -0.1837672781324], +[-0.002659443271737, -0.183763239965], +[0.002659443271738, -0.183763239965], +[0.007978283757517, -0.1837672781324], +[0.01329698606307, -0.1837753554664], +[0.01861545804443, -0.1837874739663], +[0.02393360752197, -0.1838036366329], +[0.02925134226618, -0.1838238474715], +[0.0345685699835, -0.1838481114952], +[0.03988519830222, -0.183876434729], +[0.04520113475852, -0.1839088242152], +[0.05051628678259, -0.1839452880193], +[0.0558305616848, -0.1839858352372], +[0.06114386664214, -0.1840304760028], +[0.06645610868475, -0.184079221497], +[0.07176719468262, -0.1841320839572], +[0.07707703133248, -0.1841890766883], +[0.082385525145, -0.1842502140741], +[0.08769258243213, -0.1843155115901], +[0.09299810929472, -0.1843849858171], +[0.09830201161046, -0.1844586544558], +[0.1036041950221, -0.1845365363428], +[0.1089045649261, -0.1846186514675], +[0.1142030264615, -0.1847050209896], +[0.1194994844989, -0.184795667259], +[0.124793843631, -0.1848906138355], +[0.1300860081619, -0.1849898855107], +[0.1353758820985, -0.1850935083304], +[0.1406633691409, -0.1852015096194], +[0.1459483726751, -0.1853139180063], +[0.1512307957642, -0.1854307634506], +[0.1565105411425, -0.185552077271], +[0.1617875112083, -0.1856778921748], +[0.1670616080184, -0.1858082422899], +[0.1723327332838, -0.1859431631966], +[0.1776007883647, -0.1860826919629], +[0.1828656742681, -0.1862268671803], +[0.1881272916454, -0.186375729002], +[0.1933855407909, -0.1865293191819], +[0.198640321642, -0.1866876811173], +[0.2038915337797, -0.1868508598914], +[0.2091390764316, -0.1870189023197], +[0.2143828484746, -0.187191856997], +[0.2196227484402, -0.1873697743478], +[0.224858674521, -0.1875527066779], +[0.2300905245784, -0.1877407082292], +[0.2353181961524, -0.1879338352363], +[0.2405415864732, -0.188132145986], +[0.2457605924745, -0.188335700879], +[0.250975110809, -0.1885445624948], +[0.256185037866, -0.1887587956587], +[0.2613902697919, -0.1889784675128], +[0.266590702512, -0.1892036475883], +[0.2717862317568, -0.1894344078829], +[0.2769767530892, -0.1896708229393], +[0.2821621619364, -0.1899129699291], +[0.2873423536242, -0.1901609287382], +[0.292517223415, -0.190414782057], +[0.2976866665499, -0.1906746154739], +[0.3028505782943, -0.190940517572], +[0.3080088539882, -0.1912125800308], +[0.3131613891011, -0.1914908977303], +[0.3183080792916, -0.1917755688606], +[0.3234488204724, -0.192066695035], +[0.3285835088809, -0.1923643814072], +[0.333712041156, -0.1926687367932], +[0.338834314421, -0.1929798737975], +[0.3439502263738, -0.1932979089438], +[0.349059675384, -0.1936229628102], +[0.3541625605983, -0.1939551601691], +[0.3592587820537, -0.1942946301318], +[0.3643482408003, -0.1946415062975], +[0.3694308390336, -0.1949959269069], +[0.3745064802359, -0.1953580350012], +[0.3795750693302, -0.1957279785842], +[0.3846365128443, -0.19610591079], +[0.3896907190879, -0.1964919900545], +[0.3947375983424, -0.1968863802907], +[0.3997770630647, -0.197289251068], +[0.4048090281057, -0.1977007777952], +[0.4098334109442, -0.1981211419061], +[0.4148501319377, -0.1985505310476], +[0.4198591145899, -0.1989891392702], +[0.4248602858371, -0.1994371672196], +[0.4298535763535, -0.1998948223287], +[0.4348389208769, -0.2003623190088], +[0.4398162585556, -0.2008398788406], +[0.4447855333174, -0.2013277307604], +[0.4497466942609, -0.2018261112441], +[0.4546996960717, -0.2023352644842], +[0.4596444994624, -0.2028554425599], +[0.4645810716378, -0.2033869055966], +[0.4695093867861, -0.2039299219151], +[0.474429426596, -0.2044847681647], +[0.4793411807999, -0.2050517294398], +[0.4842446477431, -0.2056310993767], +[0.4891398349794, -0.206223180225], +[0.4940267598907, -0.2068282828935], +[0.4989054503307, -0.2074467269627], +[0.5037759452917, -0.2080788406633], +[0.5086382955896, -0.2087249608125], +[0.5134925645684, -0.2093854327065], +[0.5183388288166, -0.2100606099618], +[0.5231771788947, -0.2107508543011], +[0.5280077200668, -0.2114565352781], +[0.5328305730312, -0.212178029936], +[0.5376458746434, -0.2129157223941], +[0.5424537786234, -0.2136700033573], +[0.547254456239, -0.2144412695437], +[-0.5448053556292, -0.2101993028548], +[-0.5399890504768, -0.2094292202601], +[-0.535165826996, -0.2086758661544], +[-0.530335521802, -0.2079388590718], +[-0.5254979879792, -0.2072178232116], +[-0.5206530944565, -0.206512388967], +[-0.5158007253608, -0.2058221933791], +[-0.5109407793552, -0.2051468805209], +[-0.5060731689698, -0.2044861018178], +[-0.5011978199308, -0.2038395163064], +[-0.4963146704927, -0.2032067908389], +[-0.4914236707784, -0.2025876002361], +[-0.4865247821317, -0.2019816273947], +[-0.4816179764838, -0.2013885633528], +[-0.4767032357376, -0.2008081073184], +[-0.4717805511711, -0.2002399666642], +[-0.4668499228623, -0.1996838568938], +[-0.4619113591356, -0.1991395015818], +[-0.4569648760314, -0.1986066322913], +[-0.4520104967985, -0.1980849884727], +[-0.4470482514107, -0.1975743173455], +[-0.4420781761063, -0.1970743737665], +[-0.4371003129505, -0.1965849200861], +[-0.4321147094217, -0.1961057259956], +[-0.4271214180189, -0.1956365683667], +[-0.4221204958914, -0.1951772310846], +[-0.4171120044893, -0.1947275048778], +[-0.4120960092344, -0.1942871871435], +[-0.4070725792103, -0.1938560817722], +[-0.4020417868714, -0.1934339989707], +[-0.3970037077695, -0.1930207550854], +[-0.3919584202973, -0.1926161724262], +[-0.3869060054485, -0.1922200790921], +[-0.3818465465927, -0.1918323087985], +[-0.3767801292653, -0.1914527007071], +[-0.3717068409706, -0.1910810992585], +[-0.3666267709985, -0.1907173540086], +[-0.3615400102529, -0.1903613194676], +[-0.3564466510926, -0.1900128549434], +[-0.3513467871816, -0.1896718243886], +[-0.3462405133514, -0.1893380962515], +[-0.3411279254716, -0.1890115433312], +[-0.3360091203302, -0.188692042637], +[-0.3308841955224, -0.1883794752519], +[-0.3257532493473, -0.1880737262001], +[-0.3206163807122, -0.1877746843191], +[-0.3154736890439, -0.1874822421357], +[-0.3103252742065, -0.1871962957462], +[-0.3051712364255, -0.1869167447007], +[-0.3000116762182, -0.1866434918912], +[-0.2948466943284, -0.186376443444], +[-0.2896763916675, -0.1861155086158], +[-0.2845008692595, -0.1858605996934], +[-0.2793202281906, -0.1856116318975], +[-0.2741345695638, -0.1853685232893], +[-0.268943994456, -0.1851311946819], +[-0.2637486038802, -0.1848995695537], +[-0.2585484987505, -0.1846735739659], +[-0.2533437798499, -0.1844531364832], +[-0.2481345478022, -0.1842381880974], +[-0.2429209030459, -0.1840286621539], +[-0.237702945811, -0.1838244942816], +[-0.2324807760984, -0.1836256223251], +[-0.2272544936614, -0.1834319862797], +[-0.2220241979898, -0.1832435282298], +[-0.2167899882957, -0.1830601922887], +[-0.211551963501, -0.1828819245415], +[-0.2063102222277, -0.1827086729907], +[-0.2010648627885, -0.1825403875033], +[-0.1958159831802, -0.1823770197607], +[-0.1905636810779, -0.182218523211], +[-0.1853080538308, -0.1820648530222], +[-0.1800491984593, -0.181915966039], +[-0.1747872116535, -0.1817718207403], +[-0.1695221897721, -0.181632377199], +[-0.1642542288439, -0.181497597044], +[-0.1589834245685, -0.181367443423], +[-0.1537098723192, -0.1812418809682], +[-0.1484336671464, -0.1811208757624], +[-0.1431549037818, -0.1810043953079], +[-0.1378736766434, -0.1808924084956], +[-0.1325900798412, -0.1807848855769], +[-0.1273042071839, -0.180681798136], +[-0.1220161521856, -0.1805831190643], +[-0.1167260080738, -0.1804888225355], +[-0.1114338677975, -0.1803988839827], +[-0.106139824036, -0.1803132800762], +[-0.100843969208, -0.1802319887028], +[-0.09554639548168, -0.180154988946], +[-0.0902471947846, -0.1800822610679], +[-0.08494645881418, -0.1800137864918], +[-0.07964427904877, -0.1799495477858], +[-0.07434074675881, -0.1798895286479], +[-0.06903595301839, -0.1798337138919], +[-0.06372998871713, -0.1797820894341], +[-0.05842294457231, -0.1797346422815], +[-0.05311491114116, -0.1796913605206], +[-0.04780597883353, -0.179652233307], +[-0.04249623792461, -0.1796172508569], +[-0.03718577856792, -0.1795864044378], +[-0.03187469080844, -0.1795596863621], +[-0.02656306459583, -0.1795370899801], +[-0.0212509897979, -0.1795186096746], +[-0.01593855621402, -0.1795042408558], +[-0.01062585358875, -0.1794939799582], +[-0.005312971625443, -0.179487824437], +[-7.636836550085e-13, -0.1794857727661], +[0.005312971625443, -0.179487824437], +[0.01062585358875, -0.1794939799582], +[0.01593855621403, -0.1795042408558], +[0.0212509897979, -0.1795186096746], +[0.02656306459583, -0.1795370899801], +[0.03187469080844, -0.1795596863621], +[0.03718577856792, -0.1795864044378], +[0.04249623792461, -0.1796172508569], +[0.04780597883353, -0.179652233307], +[0.05311491114116, -0.1796913605206], +[0.05842294457231, -0.1797346422815], +[0.06372998871713, -0.1797820894341], +[0.06903595301839, -0.1798337138919], +[0.07434074675881, -0.1798895286479], +[0.07964427904878, -0.1799495477858], +[0.08494645881418, -0.1800137864918], +[0.0902471947846, -0.1800822610679], +[0.09554639548168, -0.180154988946], +[0.100843969208, -0.1802319887028], +[0.106139824036, -0.1803132800762], +[0.1114338677975, -0.1803988839827], +[0.1167260080738, -0.1804888225355], +[0.1220161521856, -0.1805831190643], +[0.1273042071839, -0.180681798136], +[0.1325900798412, -0.1807848855769], +[0.1378736766434, -0.1808924084956], +[0.1431549037818, -0.1810043953079], +[0.1484336671464, -0.1811208757624], +[0.1537098723192, -0.1812418809682], +[0.1589834245685, -0.181367443423], +[0.1642542288439, -0.181497597044], +[0.1695221897721, -0.181632377199], +[0.1747872116535, -0.1817718207403], +[0.1800491984593, -0.181915966039], +[0.1853080538308, -0.1820648530222], +[0.1905636810779, -0.182218523211], +[0.1958159831802, -0.1823770197607], +[0.2010648627885, -0.1825403875032], +[0.2063102222277, -0.1827086729907], +[0.211551963501, -0.1828819245415], +[0.2167899882957, -0.1830601922887], +[0.2220241979898, -0.1832435282298], +[0.2272544936614, -0.1834319862797], +[0.2324807760984, -0.1836256223251], +[0.237702945811, -0.1838244942816], +[0.2429209030459, -0.1840286621539], +[0.2481345478022, -0.1842381880974], +[0.2533437798499, -0.1844531364832], +[0.2585484987505, -0.1846735739659], +[0.2637486038802, -0.1848995695537], +[0.268943994456, -0.1851311946819], +[0.2741345695638, -0.1853685232893], +[0.2793202281906, -0.1856116318975], +[0.2845008692595, -0.1858605996934], +[0.2896763916675, -0.1861155086158], +[0.2948466943284, -0.186376443444], +[0.3000116762182, -0.1866434918912], +[0.3051712364255, -0.1869167447007], +[0.3103252742065, -0.1871962957462], +[0.3154736890439, -0.1874822421357], +[0.3206163807122, -0.1877746843191], +[0.3257532493473, -0.1880737262001], +[0.3308841955224, -0.1883794752519], +[0.3360091203302, -0.188692042637], +[0.3411279254716, -0.1890115433312], +[0.3462405133514, -0.1893380962515], +[0.3513467871816, -0.1896718243886], +[0.3564466510926, -0.1900128549434], +[0.3615400102529, -0.1903613194676], +[0.3666267709985, -0.1907173540086], +[0.3717068409706, -0.1910810992585], +[0.3767801292653, -0.1914527007071], +[0.3818465465927, -0.1918323087985], +[0.3869060054485, -0.1922200790921], +[0.3919584202973, -0.1926161724262], +[0.3970037077695, -0.1930207550854], +[0.4020417868714, -0.1934339989707], +[0.4070725792103, -0.1938560817722], +[0.4120960092344, -0.1942871871435], +[0.4171120044893, -0.1947275048778], +[0.4221204958914, -0.1951772310846], +[0.4271214180189, -0.1956365683667], +[0.4321147094217, -0.1961057259956], +[0.4371003129505, -0.1965849200861], +[0.4420781761063, -0.1970743737665], +[0.4470482514107, -0.1975743173455], +[0.4520104967985, -0.1980849884727], +[0.4569648760314, -0.1986066322913], +[0.4619113591356, -0.1991395015818], +[0.4668499228623, -0.1996838568938], +[0.4717805511711, -0.2002399666642], +[0.4767032357376, -0.2008081073184], +[0.4816179764838, -0.2013885633528], +[0.4865247821317, -0.2019816273947], +[0.4914236707784, -0.2025876002361], +[0.4963146704927, -0.2032067908389], +[0.5011978199309, -0.2038395163064], +[0.5060731689698, -0.2044861018178], +[0.5109407793552, -0.2051468805209], +[0.5158007253608, -0.2058221933791], +[0.5206530944565, -0.206512388967], +[0.5254979879792, -0.2072178232116], +[0.530335521802, -0.2079388590718], +[0.535165826996, -0.2086758661544], +[0.5399890504768, -0.20942922026], +[0.5448053556292, -0.2101993028547], +[-0.5423459289887, -0.2059394509559], +[-0.5375144922708, -0.2051707176651], +[-0.5326764362448, -0.2044184659328], +[-0.5278316049571, -0.2036823286517], +[-0.522979857929, -0.2029619440621], +[-0.5181210695839, -0.2022569562388], +[-0.5132551286552, -0.2015670155127], +[-0.5083819375793, -0.2008917788283], +[-0.503501411882, -0.2002309100433], +[-0.4986134795616, -0.1995840801731], +[-0.4937180804746, -0.1989509675852], +[-0.4888151657287, -0.1983312581467], +[-0.483904697084, -0.1977246453302], +[-0.4789866463688, -0.1971308302809], +[-0.4740609949087, -0.1965495218498], +[-0.4691277329743, -0.195980436596], +[-0.4641868592458, -0.1954232987613], +[-0.4592383802984, -0.1948778402218], +[-0.4542823101076, -0.1943438004173], +[-0.4493186695745, -0.193820926263], +[-0.4443474860736, -0.1933089720457], +[-0.4393687930205, -0.1928076993066], +[-0.4343826294611, -0.1923168767123], +[-0.4293890396815, -0.1918362799169], +[-0.4243880728375, -0.1913656914175], +[-0.4193797826048, -0.1909049004017], +[-0.4143642268479, -0.1904537025927], +[-0.4093414673073, -0.1900119000891], +[-0.4043115693054, -0.1895793012041], +[-0.3992746014685, -0.1891557203026], +[-0.3942306354661, -0.1887409776379], +[-0.389179745766, -0.1883348991887], +[-0.3841220094036, -0.1879373164977], +[-0.379057505766, -0.1875480665105], +[-0.3739863163901, -0.187166991418], +[-0.3689085247727, -0.1867939384997], +[-0.3638242161934, -0.1864287599709], +[-0.3587334775488, -0.1860713128322], +[-0.3536363971978, -0.1857214587221], +[-0.3485330648172, -0.1853790637741], +[-0.3434235712665, -0.1850439984759], +[-0.3383080084628, -0.1847161375333], +[-0.3331864692634, -0.1843953597375], +[-0.3280590473574, -0.1840815478357], +[-0.322925837164, -0.1837745884067], +[-0.3177869337389, -0.1834743717391], +[-0.3126424326868, -0.1831807917141], +[-0.3074924300807, -0.1828937456915], +[-0.3023370223868, -0.1826131343999], +[-0.2971763063954, -0.1823388618308], +[-0.2920103791566, -0.1820708351352], +[-0.2868393379217, -0.1818089645255], +[-0.2816632800879, -0.1815531631791], +[-0.2764823031491, -0.1813033471471], +[-0.2712965046493, -0.181059435265], +[-0.2661059821407, -0.1808213490675], +[-0.2609108331451, -0.1805890127064], +[-0.2557111551184, -0.1803623528709], +[-0.2505070454191, -0.1801412987122], +[-0.2452986012789, -0.1799257817695], +[-0.2400859197766, -0.1797157359003], +[-0.2348690978141, -0.1795110972125], +[-0.2296482320959, -0.1793118039995], +[-0.2244234191095, -0.179117796678], +[-0.2191947551094, -0.178929017728], +[-0.2139623361018, -0.1787454116356], +[-0.2087262578323, -0.1785669248379], +[-0.2034866157747, -0.1783935056701], +[-0.1982435051218, -0.1782251043153], +[-0.1929970207777, -0.178061672756], +[-0.1877472573516, -0.1779031647274], +[-0.182494309153, -0.1777495356735], +[-0.177238270188, -0.1776007427044], +[-0.1719792341574, -0.1774567445558], +[-0.1667172944552, -0.1773175015504], +[-0.1614525441686, -0.1771829755604], +[-0.1561850760792, -0.1770531299729], +[-0.1509149826648, -0.1769279296553], +[-0.1456423561023, -0.176807340924], +[-0.140367288271, -0.1766913315133], +[-0.1350898707575, -0.1765798705462], +[-0.1298101948609, -0.1764729285071], +[-0.1245283515982, -0.1763704772152], +[-0.1192444317114, -0.1762724897995], +[-0.1139585256742, -0.1761789406753], +[-0.1086707237, -0.1760898055217], +[-0.10338111575, -0.1760050612602], +[-0.09808979154213, -0.1759246860351], +[-0.09279684055995, -0.1758486591947], +[-0.08750235206236, -0.1757769612727], +[-0.08220641509394, -0.1757095739731], +[-0.07690911849506, -0.1756464801533], +[-0.07161055091265, -0.1755876638102], +[-0.06631080081136, -0.175533110067], +[-0.06100995648489, -0.17548280516], +[-0.0557081060676, -0.1754367364278], +[-0.05040533754643, -0.1753948923004], +[-0.04510173877297, -0.1753572622897], +[-0.03979739747575, -0.1753238369807], +[-0.03449240127275, -0.1752946080239], +[-0.02918683768402, -0.1752695681285], +[-0.02388079414447, -0.1752487110562], +[-0.01857435801676, -0.1752320316162], +[-0.0132676166043, -0.1752195256609], +[-0.007960657164326, -0.1752111900825], +[-0.002653566921072, -0.1752070228108], +[0.002653566921072, -0.1752070228108], +[0.007960657164326, -0.1752111900825], +[0.0132676166043, -0.1752195256609], +[0.01857435801676, -0.1752320316162], +[0.02388079414447, -0.1752487110562], +[0.02918683768402, -0.1752695681285], +[0.03449240127275, -0.1752946080239], +[0.03979739747575, -0.1753238369807], +[0.04510173877297, -0.1753572622897], +[0.05040533754643, -0.1753948923004], +[0.0557081060676, -0.1754367364278], +[0.06100995648489, -0.17548280516], +[0.06631080081136, -0.175533110067], +[0.07161055091265, -0.1755876638102], +[0.07690911849506, -0.1756464801533], +[0.08220641509394, -0.1757095739731], +[0.08750235206236, -0.1757769612728], +[0.09279684055991, -0.1758486591946], +[0.09808979154213, -0.1759246860351], +[0.10338111575, -0.1760050612602], +[0.1086707237, -0.1760898055217], +[0.1139585256742, -0.1761789406753], +[0.1192444317114, -0.1762724897995], +[0.1245283515982, -0.1763704772152], +[0.1298101948609, -0.1764729285071], +[0.1350898707575, -0.1765798705462], +[0.140367288271, -0.1766913315133], +[0.1456423561023, -0.176807340924], +[0.1509149826648, -0.1769279296553], +[0.1561850760792, -0.1770531299729], +[0.1614525441686, -0.1771829755604], +[0.1667172944552, -0.1773175015504], +[0.1719792341574, -0.1774567445558], +[0.177238270188, -0.1776007427044], +[0.182494309153, -0.1777495356735], +[0.1877472573516, -0.1779031647274], +[0.1929970207777, -0.178061672756], +[0.1982435051218, -0.1782251043153], +[0.2034866157747, -0.1783935056701], +[0.2087262578323, -0.1785669248379], +[0.2139623361018, -0.1787454116356], +[0.2191947551094, -0.178929017728], +[0.2244234191095, -0.179117796678], +[0.2296482320959, -0.1793118039995], +[0.2348690978141, -0.1795110972125], +[0.2400859197766, -0.1797157359003], +[0.2452986012789, -0.1799257817695], +[0.2505070454191, -0.1801412987122], +[0.2557111551184, -0.1803623528709], +[0.2609108331449, -0.1805890127064], +[0.2661059821407, -0.1808213490675], +[0.2712965046493, -0.181059435265], +[0.2764823031491, -0.1813033471471], +[0.2816632800879, -0.1815531631791], +[0.2868393379217, -0.1818089645255], +[0.2920103791566, -0.1820708351352], +[0.2971763063954, -0.1823388618308], +[0.3023370223868, -0.1826131343999], +[0.3074924300807, -0.1828937456915], +[0.3126424326868, -0.1831807917141], +[0.3177869337389, -0.1834743717391], +[0.322925837164, -0.1837745884067], +[0.3280590473574, -0.1840815478357], +[0.3331864692634, -0.1843953597375], +[0.3383080084628, -0.1847161375333], +[0.3434235712665, -0.1850439984759], +[0.3485330648172, -0.1853790637741], +[0.3536363971978, -0.1857214587221], +[0.3587334775488, -0.1860713128322], +[0.3638242161934, -0.1864287599709], +[0.3689085247727, -0.1867939384997], +[0.3739863163901, -0.187166991418], +[0.379057505766, -0.1875480665105], +[0.3841220094036, -0.1879373164977], +[0.389179745766, -0.1883348991887], +[0.3942306354661, -0.1887409776379], +[0.3992746014685, -0.1891557203026], +[0.4043115693054, -0.1895793012041], +[0.4093414673073, -0.1900119000891], +[0.4143642268479, -0.1904537025927], +[0.4193797826048, -0.1909049004017], +[0.4243880728375, -0.1913656914175], +[0.4293890396815, -0.1918362799169], +[0.4343826294615, -0.1923168767118], +[0.4393687930205, -0.1928076993066], +[0.4443474860736, -0.1933089720457], +[0.4493186695745, -0.193820926263], +[0.4542823101076, -0.1943438004173], +[0.4592383802984, -0.1948778402219], +[0.4641868592458, -0.1954232987613], +[0.4691277329743, -0.195980436596], +[0.4740609949087, -0.1965495218498], +[0.4789866463688, -0.1971308302809], +[0.483904697084, -0.1977246453302], +[0.4888151657287, -0.1983312581467], +[0.4937180804746, -0.1989509675852], +[0.4986134795616, -0.1995840801731], +[0.503501411882, -0.2002309100433], +[0.5083819375793, -0.2008917788283], +[0.5132551286552, -0.2015670155127], +[0.5181210695839, -0.2022569562388], +[0.522979857929, -0.2029619440621], +[0.5278316049571, -0.2036823286517], +[0.5326764362448, -0.2044184659328], +[0.5375144922708, -0.2051707176651], +[0.5423459289887, -0.2059394509559], +[-0.5398757441077, -0.2016618902647], +[-0.5350303200397, -0.2008948943877], +[-0.5301779024597, -0.2001439159345], +[-0.5253190072, -0.199408827733], +[-0.5204534998737, -0.198689281269], +[-0.5155812601241, -0.1979849335335], +[-0.5107021810809, -0.1972954474138], +[-0.5058161688029, -0.1966204920268], +[-0.5009231417135, -0.1959597429997], +[-0.4960230300333, -0.1953128827006], +[-0.4911157752144, -0.1946796004234], +[-0.4862013293795, -0.1940595925296], +[-0.4812796547699, -0.1934525625522], +[-0.4763507232036, -0.1928582212638], +[-0.4714145155471, -0.1922762867137], +[-0.466471021202, -0.1917064842356], +[-0.4615202376077, -0.1911485464305], +[-0.4565621697612, -0.1906022131272], +[-0.4515968297556, -0.1900672313225], +[-0.4466242363367, -0.1895433551045], +[-0.4416444144788, -0.1890303455615], +[-0.4366573949789, -0.1885279706767], +[-0.4316632140707, -0.188036005214], +[-0.426661913057, -0.1875542305928], +[-0.42165353796, -0.187082434757], +[-0.4166381391904, -0.1866204120371], +[-0.4116157712338, -0.1861679630077], +[-0.4065864923539, -0.185724894342], +[-0.4015503643123, -0.1852910186631], +[-0.3965074521045, -0.1848661543942], +[-0.3914578237105, -0.1844501256081], +[-0.3864015498605, -0.1840427618762], +[-0.3813387038143, -0.1836438981186], +[-0.3762693611542, -0.1832533744549], +[-0.3711935995901, -0.1828710360565], +[-0.3661114987776, -0.1824967330013], +[-0.3610231401464, -0.1821303201307], +[-0.3559286067407, -0.181771656908], +[-0.3508279830687, -0.1814206072815], +[-0.3457213549629, -0.181077039549], +[-0.3406088094491, -0.1807408262262], +[-0.3354904346239, -0.1804118439181], +[-0.3303663195409, -0.1800899731942], +[-0.3252365541043, -0.179775098466], +[-0.32010122897, -0.1794671078698], +[-0.3149604354532, -0.1791658931507], +[-0.309814265443, -0.1788713495523], +[-0.3046628113231, -0.1785833757082], +[-0.2995061658971, -0.1783018735379], +[-0.2943444223211, -0.1780267481454], +[-0.2891776740399, -0.1777579077223], +[-0.2840060147283, -0.1774952634527], +[-0.2788295382376, -0.1772387294226], +[-0.2736483385452, -0.176988222532], +[-0.268462509709, -0.17674366241], +[-0.2632721458255, -0.1765049713335], +[-0.2580773409906, -0.176272074148], +[-0.2528781892651, -0.1760448981925], +[-0.2476747846419, -0.1758233732258], +[-0.2424672210169, -0.1756074313572], +[-0.2372555921624, -0.1753970069785], +[-0.2320399917032, -0.1751920366992], +[-0.2268205130953, -0.1749924592843], +[-0.221597249606, -0.1747982155946], +[-0.2163702942974, -0.1746092485289], +[-0.2111397400108, -0.1744255029689], +[-0.2059056793539, -0.1742469257267], +[-0.200668204689, -0.1740734654935], +[-0.1954274081234, -0.1739050727914], +[-0.190183381501, -0.1737416999264], +[-0.184936216396, -0.1735833009442], +[-0.1796860041068, -0.1734298315871], +[-0.1744328356529, -0.1732812492534], +[-0.1691768017712, -0.1731375129581], +[-0.163917992915, -0.1729985832957], +[-0.1586564992531, -0.1728644224045], +[-0.15339241067, -0.1727349939323], +[-0.1481258167681, -0.1726102630043], +[-0.1428568068691, -0.1724901961918], +[-0.1375854700178, -0.1723747614828], +[-0.1323118949855, -0.172263928254], +[-0.1270361702752, -0.1721576672441], +[-0.1217583841266, -0.1720559505282], +[-0.1164786245223, -0.1719587514942], +[-0.1111969791944, -0.1718660448195], +[-0.1059135356318, -0.17177780645], +[-0.1006283810877, -0.1716940135791], +[-0.09534160258832, -0.171614644629], +[-0.09005328694098, -0.1715396792325], +[-0.08476352074384, -0.1714690982159], +[-0.0794723903952, -0.171402883583], +[-0.07417998210344, -0.1713410185007], +[-0.06888638189733, -0.1712834872845], +[-0.06359167563665, -0.1712302753862], +[-0.05829594902305, -0.1711813693819], +[-0.05299928761123, -0.1711367569607], +[-0.04770177682038, -0.1710964269154], +[-0.04240350194578, -0.1710603691328], +[-0.03710454817062, -0.171028574586], +[-0.03180500057806, -0.171001035327], +[-0.02650494416338, -0.1709777444803], +[-0.02120446384626, -0.1709586962373], +[-0.01590364448323, -0.1709438858519], +[-0.01060257088019, -0.1709333096366], +[-0.005301327804961, -0.1709269649595], +[-1.452527585694e-13, -0.1709248502425], +[0.005301327804961, -0.1709269649595], +[0.01060257088019, -0.1709333096366], +[0.01590364448323, -0.1709438858519], +[0.02120446384626, -0.1709586962373], +[0.02650494416338, -0.1709777444803], +[0.03180500057806, -0.171001035327], +[0.03710454817062, -0.171028574586], +[0.04240350194578, -0.1710603691328], +[0.04770177682039, -0.1710964269154], +[0.05299928761123, -0.1711367569607], +[0.05829594902305, -0.1711813693819], +[0.06359167563665, -0.1712302753862], +[0.06888638189733, -0.1712834872845], +[0.07417998210344, -0.1713410185007], +[0.0794723903952, -0.171402883583], +[0.08476352074384, -0.1714690982159], +[0.09005328694098, -0.1715396792325], +[0.09534160258832, -0.171614644629], +[0.1006283810878, -0.1716940135791], +[0.1059135356318, -0.17177780645], +[0.1111969791944, -0.1718660448195], +[0.1164786245223, -0.1719587514942], +[0.1217583841266, -0.1720559505282], +[0.1270361702752, -0.1721576672441], +[0.1323118949855, -0.172263928254], +[0.1375854700178, -0.1723747614828], +[0.1428568068691, -0.1724901961918], +[0.1481258167681, -0.1726102630043], +[0.15339241067, -0.1727349939323], +[0.1586564992531, -0.1728644224045], +[0.163917992915, -0.1729985832957], +[0.1691768017712, -0.1731375129581], +[0.1744328356529, -0.1732812492534], +[0.1796860041068, -0.1734298315871], +[0.184936216396, -0.1735833009442], +[0.190183381501, -0.1737416999264], +[0.1954274081234, -0.1739050727914], +[0.200668204689, -0.1740734654935], +[0.2059056793539, -0.1742469257267], +[0.2111397400108, -0.1744255029689], +[0.2163702942974, -0.1746092485289], +[0.221597249606, -0.1747982155946], +[0.2268205130953, -0.1749924592843], +[0.2320399917033, -0.1751920366992], +[0.2372555921624, -0.1753970069785], +[0.2424672210169, -0.1756074313572], +[0.2476747846419, -0.1758233732258], +[0.2528781892651, -0.1760448981925], +[0.2580773409906, -0.176272074148], +[0.2632721458255, -0.1765049713335], +[0.268462509709, -0.17674366241], +[0.2736483385452, -0.176988222532], +[0.2788295382376, -0.1772387294226], +[0.2840060147283, -0.1774952634527], +[0.2891776740399, -0.1777579077223], +[0.2943444223211, -0.1780267481454], +[0.2995061658971, -0.1783018735379], +[0.3046628113231, -0.1785833757082], +[0.309814265443, -0.1788713495523], +[0.3149604354532, -0.1791658931507], +[0.32010122897, -0.1794671078698], +[0.3252365541043, -0.179775098466], +[0.3303663195409, -0.1800899731942], +[0.3354904346239, -0.1804118439181], +[0.3406088094491, -0.1807408262262], +[0.3457213549629, -0.181077039549], +[0.3508279830687, -0.1814206072815], +[0.3559286067407, -0.181771656908], +[0.3610231401464, -0.1821303201307], +[0.3661114987776, -0.1824967330013], +[0.3711935995901, -0.1828710360565], +[0.3762693611542, -0.1832533744549], +[0.3813387038143, -0.1836438981186], +[0.3864015498605, -0.1840427618762], +[0.3914578237105, -0.1844501256081], +[0.3965074521045, -0.1848661543942], +[0.4015503643123, -0.1852910186631], +[0.4065864923539, -0.185724894342], +[0.4116157712338, -0.1861679630077], +[0.4166381391904, -0.1866204120371], +[0.42165353796, -0.187082434757], +[0.426661913057, -0.1875542305928], +[0.4316632140707, -0.188036005214], +[0.4366573949789, -0.1885279706767], +[0.4416444144788, -0.1890303455615], +[0.4466242363367, -0.1895433551045], +[0.4515968297556, -0.1900672313224], +[0.4565621697612, -0.1906022131272], +[0.4615202376077, -0.1911485464305], +[0.466471021202, -0.1917064842356], +[0.4714145155471, -0.1922762867137], +[0.4763507232036, -0.1928582212638], +[0.4812796547699, -0.1934525625522], +[0.4862013293795, -0.1940595925296], +[0.4911157752144, -0.1946796004235], +[0.4960230300333, -0.1953128827007], +[0.5009231417135, -0.1959597429997], +[0.5058161688029, -0.1966204920268], +[0.5107021810809, -0.1972954474138], +[0.5155812601241, -0.1979849335335], +[0.5204534998737, -0.198689281269], +[0.5253190072, -0.199408827733], +[0.5301779024597, -0.2001439159345], +[0.5350303200397, -0.2008948943878], +[0.5398757440997, -0.2016618903223], +[-0.5373963484116, -0.1973675823481], +[-0.5325367433735, -0.1966021365508], +[-0.5276704202196, -0.1958525979244], +[-0.5227979086454, -0.195118733225], +[-0.5179190800317, -0.1944002064501], +[-0.5130338189813, -0.1936966868001], +[-0.5081420228182, -0.1930078490402], +[-0.5032436010752, -0.1923333738125], +[-0.498338474974, -0.1916729478986], +[-0.493426576902, -0.1910262644373], +[-0.4885078498904, -0.1903930230998], +[-0.4835822470963, -0.1897729302267], +[-0.4786497312912, -0.189165698929], +[-0.4737102743598, -0.188571049157], +[-0.4687638568093, -0.1879887077394], +[-0.463810467292, -0.1874184083966], +[-0.458850102143, -0.1868598917302], +[-0.4538827649317, -0.1863129051906], +[-0.4489084660312, -0.1857772030279], +[-0.443927222203, -0.1852525462243], +[-0.4389390561992, -0.1847387024143], +[-0.4339439963821, -0.1842354457913], +[-0.4289420763603, -0.1837425570046], +[-0.4239333346427, -0.1832598230474], +[-0.4189178143081, -0.1827870371374], +[-0.4138955626924, -0.1823239985916], +[-0.4088666310912, -0.1818705126961], +[-0.4038310744783, -0.1814263905728], +[-0.3987889512395, -0.1809914490428], +[-0.3937403229203, -0.1805655104886], +[-0.3886852539889, -0.1801484027143], +[-0.3836238116114, -0.179739958807], +[-0.3785560654412, -0.1793400169967], +[-0.3734820874201, -0.178948420518], +[-0.3684019515909, -0.1785650174729], +[-0.3633157339226, -0.1781896606946], +[-0.3582235121448, -0.177822207614], +[-0.3531253655935, -0.1774625201278], +[-0.348021375066, -0.1771104644691], +[-0.3429116226847, -0.1767659110809], +[-0.3377961917709, -0.1764287344922], +[-0.332675166725, -0.1760988131968], +[-0.3275486329162, -0.1757760295354], +[-0.3224166765784, -0.1754602695808], +[-0.3172793847138, -0.1751514230261], +[-0.3121368450024, -0.1748493830756], +[-0.3069891457184, -0.17455404634], +[-0.301836375652, -0.1742653127339], +[-0.2966786240365, -0.1739830853763], +[-0.2915159804818, -0.1737072704951], +[-0.2863485349109, -0.1734377773343], +[-0.2811763775028, -0.1731745180636], +[-0.2759995986384, -0.1729174076923], +[-0.2708182888519, -0.1726663639854], +[-0.2656325387843, -0.1724213073824], +[-0.2604424391423, -0.1721821609198], +[-0.2552480806591, -0.1719488501556], +[-0.2500495540596, -0.171721303097], +[-0.2448469500282, -0.1714994501306], +[-0.2396403591789, -0.1712832239551], +[-0.234429872029, -0.1710725595169], +[-0.2292155789749, -0.1708673939478], +[-0.22399757027, -0.1706676665053], +[-0.2187759360053, -0.1704733185152], +[-0.2135507660922, -0.1702842933162], +[-0.2083221502465, -0.1701005362073], +[-0.2030901779751, -0.1699219943964], +[-0.1978549385642, -0.1697486169524], +[-0.1926165210689, -0.1695803547576], +[-0.1873750143045, -0.1694171604633], +[-0.1821305068398, -0.1692589884468], +[-0.1768830869907, -0.1691057947701], +[-0.171632842816, -0.1689575371411], +[-0.1663798621142, -0.1688141748754], +[-0.1611242324212, -0.1686756688604], +[-0.1558660410092, -0.1685419815213], +[-0.1506053748869, -0.1684130767882], +[-0.1453423208004, -0.1682889200644], +[-0.1400769652347, -0.1681694781972], +[-0.1348093944168, -0.168054719449], +[-0.1295396943189, -0.1679446134706], +[-0.1242679506627, -0.1678391312754], +[-0.1189942489244, -0.167738245215], +[-0.11371867434, -0.1676419289561], +[-0.1084413119119, -0.1675501574586], +[-0.1031622464152, -0.1674629069548], +[-0.09788156240542, -0.16738015493], +[-0.0925993442259, -0.1673018801041], +[-0.08731567601642, -0.167228062414], +[-0.08203064172176, -0.1671586829977], +[-0.07674432510077, -0.1670937241788], +[-0.07145680973594, -0.1670331694523], +[-0.06616817904322, -0.1669770034718], +[-0.06087851628212, -0.1669252120366], +[-0.05558790456626, -0.1668777820812], +[-0.05029642687401, -0.1668347016643], +[-0.04500416605948, -0.1667959599598], +[-0.03971120486371, -0.1667615472481], +[-0.03441762592608, -0.1667314549085], +[-0.02912351179579, -0.1667056754127], +[-0.02382894494367, -0.1666842023186], +[-0.01853400777395, -0.1666670302653], +[-0.01323878263625, -0.1666541549691], +[-0.007943351837587, -0.1666455732203], +[-0.002647797654559, -0.1666412828803], +[0.002647797654559, -0.1666412828803], +[0.007943351837588, -0.1666455732203], +[0.01323878263624, -0.1666541549691], +[0.01853400777395, -0.1666670302653], +[0.02382894494367, -0.1666842023186], +[0.02912351179579, -0.1667056754127], +[0.03441762592608, -0.1667314549085], +[0.03971120486371, -0.1667615472481], +[0.04500416605948, -0.1667959599598], +[0.05029642687401, -0.1668347016643], +[0.05558790456626, -0.1668777820812], +[0.06087851628212, -0.1669252120366], +[0.06616817904322, -0.1669770034718], +[0.07145680973594, -0.1670331694523], +[0.07674432510077, -0.1670937241788], +[0.08203064172176, -0.1671586829977], +[0.08731567601642, -0.167228062414], +[0.0925993442259, -0.1673018801041], +[0.09788156240542, -0.16738015493], +[0.1031622464152, -0.1674629069548], +[0.1084413119119, -0.1675501574586], +[0.11371867434, -0.1676419289561], +[0.1189942489244, -0.167738245215], +[0.1242679506627, -0.1678391312754], +[0.1295396943189, -0.1679446134706], +[0.1348093944168, -0.168054719449], +[0.1400769652347, -0.1681694781972], +[0.1453423208004, -0.1682889200644], +[0.1506053748869, -0.1684130767882], +[0.1558660410092, -0.1685419815213], +[0.1611242324212, -0.1686756688604], +[0.1663798621142, -0.1688141748754], +[0.171632842816, -0.1689575371411], +[0.1768830869907, -0.1691057947701], +[0.1821305068398, -0.1692589884468], +[0.1873750143045, -0.1694171604633], +[0.1926165210689, -0.1695803547576], +[0.1978549385642, -0.1697486169524], +[0.2030901779751, -0.1699219943964], +[0.2083221502465, -0.1701005362073], +[0.2135507660922, -0.1702842933162], +[0.2187759360053, -0.1704733185152], +[0.22399757027, -0.1706676665053], +[0.2292155789749, -0.1708673939478], +[0.234429872029, -0.1710725595169], +[0.2396403591789, -0.1712832239551], +[0.2448469500282, -0.1714994501306], +[0.2500495540596, -0.171721303097], +[0.2552480806591, -0.1719488501556], +[0.2604424391423, -0.1721821609198], +[0.2656325387843, -0.1724213073824], +[0.2708182888519, -0.1726663639854], +[0.2759995986384, -0.1729174076923], +[0.2811763775028, -0.1731745180636], +[0.2863485349109, -0.1734377773343], +[0.2915159804818, -0.1737072704951], +[0.2966786240365, -0.1739830853763], +[0.301836375652, -0.1742653127339], +[0.3069891457184, -0.17455404634], +[0.3121368450024, -0.1748493830756], +[0.3172793847138, -0.1751514230261], +[0.3224166765784, -0.1754602695808], +[0.3275486329162, -0.1757760295354], +[0.332675166725, -0.1760988131968], +[0.3377961917709, -0.1764287344922], +[0.3429116226847, -0.1767659110809], +[0.348021375066, -0.1771104644691], +[0.3531253655935, -0.1774625201278], +[0.3582235121448, -0.177822207614], +[0.3633157339226, -0.1781896606946], +[0.3684019515909, -0.1785650174729], +[0.3734820874201, -0.178948420518], +[0.3785560654412, -0.1793400169967], +[0.3836238116114, -0.179739958807], +[0.3886852539889, -0.1801484027143], +[0.3937403229203, -0.1805655104886], +[0.3987889512395, -0.1809914490428], +[0.4038310744783, -0.1814263905728], +[0.4088666310912, -0.1818705126961], +[0.4138955626924, -0.1823239985916], +[0.4189178143081, -0.1827870371374], +[0.4239333346427, -0.1832598230474], +[0.4289420763603, -0.1837425570046], +[0.4339439963821, -0.1842354457913], +[0.4389390561992, -0.1847387024143], +[0.443927222203, -0.1852525462243], +[0.4489084660312, -0.1857772030279], +[0.4538827649317, -0.1863129051906], +[0.458850102143, -0.1868598917301], +[0.463810467292, -0.1874184083966], +[0.4687638568093, -0.1879887077394], +[0.4737102743598, -0.188571049157], +[0.4786497312912, -0.189165698929], +[0.4835822470963, -0.1897729302267], +[0.4885078498904, -0.1903930230998], +[0.493426576902, -0.1910262644373], +[0.498338474974, -0.1916729478986], +[0.5032436010752, -0.1923333738125], +[0.5081420228182, -0.1930078490402], +[0.5130338189813, -0.1936966868001], +[0.5179190800317, -0.1944002064501], +[0.5227979086454, -0.195118733225], +[0.5276704202196, -0.1958525979244], +[0.5325367433735, -0.1966021365508], +[0.5373963484039, -0.1973675824059], +[-0.5349073557362, -0.1930565951044], +[-0.5300339658017, -0.1922928183702], +[-0.5251541789216, -0.1915448819898], +[-0.5202684850589, -0.1908124106252], +[-0.5153767610577, -0.1900950801085], +[-0.5104788962329, -0.1893925711946], +[-0.5055747919089, -0.1887045698988], +[-0.5006643609473, -0.1880307677878], +[-0.4957475272674, -0.1873708622258], +[-0.4908242253633, -0.1867245565801], +[-0.4858943998215, -0.1860915603875], +[-0.4809580048417, -0.1854715894859], +[-0.4760150037628, -0.1848643661123], +[-0.4710653685982, -0.1842696189717], +[-0.4661090795797, -0.1836870832787], +[-0.4611461247133, -0.1831165007741], +[-0.4561764993484, -0.1825576197201], +[-0.4512002057593, -0.1820101948756], +[-0.4462172527423, -0.1814739874539], +[-0.4412276552269, -0.1809487650656], +[-0.4362314339029, -0.1804343016471], +[-0.4312286148627, -0.1799303773787], +[-0.4262192292587, -0.1794367785916], +[-0.4212033129772, -0.1789532976672], +[-0.4161809063265, -0.1784797329286], +[-0.4111520537408, -0.1780158885272], +[-0.4061168034984, -0.177561574323], +[-0.4010752074546, -0.1771166057633], +[-0.3960273207882, -0.1766808037564], +[-0.3909732017619, -0.1762539945448], +[-0.3859129114955, -0.1758360095767], +[-0.3808465137516, -0.1754266853765], +[-0.3757740747334, -0.1750258634156], +[-0.3706956628948, -0.174633389984], +[-0.3656113487599, -0.1742491160616], +[-0.3605212047549, -0.1738728971922], +[-0.3554253050488, -0.1735045933579], +[-0.3503237254045, -0.173144068856], +[-0.3452165430384, -0.1727911921777], +[-0.340103836489, -0.172445835889], +[-0.3349856854939, -0.1721078765148], +[-0.3298621708744, -0.1717771944242], +[-0.3247333744272, -0.1714536737197], +[-0.3195993788239, -0.1711372021289], +[-0.3144602675163, -0.1708276708985], +[-0.3093161246484, -0.1705249746916], +[-0.3041670349747, -0.170229011488], +[-0.2990130837829, -0.1699396824873], +[-0.2938543568235, -0.1696568920146], +[-0.288690940243, -0.1693805474295], +[-0.2835229205227, -0.1691105590378], +[-0.2783503844215, -0.1688468400061], +[-0.2731734189232, -0.1685893062794], +[-0.2679921111875, -0.1683378765008], +[-0.2628065485049, -0.1680924719348], +[-0.2576168182552, -0.167853016393], +[-0.2524230078688, -0.1676194361616], +[-0.2472252047923, -0.1673916599331], +[-0.2420234964556, -0.1671696187387], +[-0.2368179702428, -0.166953245885], +[-0.2316087134653, -0.166742476891], +[-0.2263958133377, -0.1665372494295], +[-0.2211793569555, -0.1663375032695], +[-0.2159594312756, -0.1661431802209], +[-0.2107361230985, -0.1659542240819], +[-0.2055095190526, -0.1657705805882], +[-0.20027970558, -0.1655921973638], +[-0.1950467689248, -0.1654190238748], +[-0.1898107951222, -0.1652510113838], +[-0.1845718699895, -0.1650881129074], +[-0.1793300791189, -0.1649302831746], +[-0.174085507871, -0.1647774785874], +[-0.1688382413698, -0.1646296571832], +[-0.1635883644995, -0.1644867785981], +[-0.1583359619015, -0.1643488040329], +[-0.1530811179732, -0.1642156962197], +[-0.1478239168674, -0.1640874193903], +[-0.142564442493, -0.1639639392466], +[-0.1373027785162, -0.1638452229315], +[-0.1320390083629, -0.1637312390016], +[-0.1267732152218, -0.1636219574016], +[-0.1215054820479, -0.1635173494392], +[-0.1162358915673, -0.1634173877618], +[-0.1109645262822, -0.1633220463346], +[-0.1056914684766, -0.1632313004192], +[-0.1004168002231, -0.1631451265538], +[-0.09514060338898, -0.1630635025347], +[-0.08986295964423, -0.1629864073984], +[-0.08458395046914, -0.1629138214051], +[-0.07930365716266, -0.1628457260232], +[-0.07402216085105, -0.1627821039147], +[-0.06873954249698, -0.1627229389219], +[-0.06345588290891, -0.1626682160545], +[-0.05817126275088, -0.1626179214782], +[-0.05288576255248, -0.1625720425039], +[-0.04759946271918, -0.1625305675781], +[-0.04231244354285, -0.1624934862741], +[-0.03702478521254, -0.1624607892838], +[-0.03173656782537, -0.1624324684107], +[-0.02644787139771, -0.1624085165637], +[-0.02115877587642, -0.1623889277516], +[-0.01586936115023, -0.1623736970788], +[-0.01057970706127, -0.1623628207414], +[-0.005289893416631, -0.1623562960244], +[1.019094118443e-15, -0.1623541212996], +[0.005289893416631, -0.1623562960244], +[0.01057970706127, -0.1623628207414], +[0.01586936115023, -0.1623736970788], +[0.02115877587642, -0.1623889277516], +[0.02644787139771, -0.1624085165637], +[0.03173656782537, -0.1624324684107], +[0.03702478521254, -0.1624607892838], +[0.04231244354285, -0.1624934862741], +[0.04759946271918, -0.1625305675781], +[0.05288576255248, -0.1625720425039], +[0.05817126275088, -0.1626179214782], +[0.06345588290891, -0.1626682160545], +[0.06873954249698, -0.1627229389219], +[0.07402216085105, -0.1627821039147], +[0.07930365716266, -0.1628457260232], +[0.08458395046914, -0.1629138214051], +[0.08986295964423, -0.1629864073984], +[0.09514060338898, -0.1630635025347], +[0.1004168002231, -0.1631451265538], +[0.1056914684766, -0.1632313004192], +[0.1109645262821, -0.1633220463346], +[0.1162358915673, -0.1634173877618], +[0.1215054820479, -0.1635173494392], +[0.1267732152218, -0.1636219574016], +[0.1320390083629, -0.1637312390016], +[0.1373027785162, -0.1638452229315], +[0.142564442493, -0.1639639392466], +[0.1478239168674, -0.1640874193903], +[0.1530811179732, -0.1642156962197], +[0.1583359619015, -0.1643488040329], +[0.1635883644995, -0.1644867785981], +[0.1688382413698, -0.1646296571832], +[0.174085507871, -0.1647774785874], +[0.1793300791189, -0.1649302831746], +[0.1845718699895, -0.1650881129074], +[0.1898107951222, -0.1652510113838], +[0.1950467689248, -0.1654190238748], +[0.20027970558, -0.1655921973638], +[0.2055095190526, -0.1657705805882], +[0.2107361230985, -0.1659542240819], +[0.2159594312756, -0.1661431802209], +[0.2211793569555, -0.1663375032695], +[0.2263958133377, -0.1665372494295], +[0.2316087134653, -0.166742476891], +[0.2368179702428, -0.166953245885], +[0.2420234964556, -0.1671696187387], +[0.2472252047923, -0.1673916599331], +[0.2524230078688, -0.1676194361616], +[0.2576168182552, -0.1678530163929], +[0.2628065485049, -0.1680924719348], +[0.2679921111875, -0.1683378765008], +[0.2731734189232, -0.1685893062794], +[0.2783503844215, -0.1688468400061], +[0.2835229205227, -0.1691105590378], +[0.288690940243, -0.1693805474295], +[0.2938543568235, -0.1696568920146], +[0.2990130837829, -0.1699396824873], +[0.3041670349747, -0.170229011488], +[0.3093161246484, -0.1705249746916], +[0.3144602675163, -0.1708276708985], +[0.3195993788239, -0.1711372021289], +[0.3247333744272, -0.1714536737197], +[0.3298621708744, -0.1717771944242], +[0.3349856854939, -0.1721078765148], +[0.340103836489, -0.172445835889], +[0.3452165430384, -0.1727911921777], +[0.3503237254045, -0.173144068856], +[0.3554253050488, -0.1735045933579], +[0.3605212047549, -0.1738728971922], +[0.3656113487599, -0.1742491160616], +[0.3706956628948, -0.1746333899839], +[0.3757740747335, -0.1750258634156], +[0.3808465137516, -0.1754266853765], +[0.3859129114955, -0.1758360095767], +[0.3909732017619, -0.1762539945448], +[0.3960273207882, -0.1766808037564], +[0.4010752074546, -0.1771166057633], +[0.4061168034984, -0.177561574323], +[0.4111520537408, -0.1780158885272], +[0.4161809063265, -0.1784797329286], +[0.4212033129772, -0.1789532976672], +[0.4262192292587, -0.1794367785916], +[0.4312286148627, -0.1799303773787], +[0.4362314339029, -0.1804343016471], +[0.4412276552269, -0.1809487650656], +[0.4462172527423, -0.1814739874539], +[0.4512002057593, -0.1820101948756], +[0.4561764993484, -0.1825576197201], +[0.4611461247133, -0.1831165007741], +[0.4661090795797, -0.1836870832787], +[0.4710653685982, -0.1842696189717], +[0.4760150037628, -0.1848643661123], +[0.4809580048417, -0.1854715894859], +[0.4858943998215, -0.1860915603875], +[0.4908242253633, -0.1867245565801], +[0.4957475272674, -0.1873708622258], +[0.5006643609473, -0.1880307677878], +[0.5055747919089, -0.1887045698988], +[0.5104788962329, -0.1893925711946], +[0.5153767610577, -0.1900950801085], +[0.5202684850589, -0.1908124106252], +[0.5251541789216, -0.1915448819898], +[0.5300339658017, -0.1922928183702], +[0.5349079815599, -0.1930565481197], +[-0.5324090264385, -0.1887285427495], +[-0.5275221851481, -0.1879673028774], +[-0.5226293630675, -0.1872211272423], +[-0.517730908081, -0.1864902146982], +[-0.5128267022085, -0.1857742522844], +[-0.507916639242, -0.1850729317041], +[-0.5030006243198, -0.1843859496399], +[-0.4980785734908, -0.1837130080246], +[-0.4931504132707, -0.183053814273], +[-0.4882160801966, -0.1824080814756], +[-0.4832755203796, -0.1817755285567], +[-0.4783286890614, -0.1811558804001], +[-0.4733755501744, -0.1805488679453], +[-0.4684160759102, -0.1799542282547], +[-0.4634502462948, -0.1793717045572], +[-0.4584780487761, -0.1788010462683], +[-0.4534994778205, -0.1782420089894], +[-0.4485145345231, -0.1776943544896], +[-0.4435232262299, -0.1771578506705], +[-0.4385255661742, -0.1766322715163], +[-0.4335215731258, -0.1761173970322], +[-0.4285112710553, -0.1756130131705], +[-0.4234946888112, -0.1751189117481], +[-0.4184718598123, -0.1746348903551], +[-0.4134428217532, -0.174160752257], +[-0.408407616324, -0.1736963062907], +[-0.4033662889433, -0.1732413667565], +[-0.3983188885045, -0.1727957533049], +[-0.393265467135, -0.1723592908225], +[-0.3882060799676, -0.1719318093139], +[-0.3831407849246, -0.1715131437832], +[-0.3780696425129, -0.1711031341142], +[-0.3729927156308, -0.1707016249507], +[-0.367910069385, -0.1703084655766], +[-0.362821770919, -0.1699235097966], +[-0.3577278892498, -0.169546615818], +[-0.352628495116, -0.1691776461339], +[-0.3475236608329, -0.1688164674078], +[-0.3424134601581, -0.1684629503595], +[-0.3372979681637, -0.1681169696541], +[-0.3321772611176, -0.167778403792], +[-0.3270514163709, -0.1674471350019], +[-0.3219205122536, -0.167123049136], +[-0.3167846279763, -0.1668060355676], +[-0.3116438435379, -0.1664959870913], +[-0.3064982396403, -0.1661927998258], +[-0.3013478976076, -0.1658963731196], +[-0.2961928993118, -0.1656066094588], +[-0.2910333271024, -0.1653234143781], +[-0.285869263742, -0.1650466963745], +[-0.2807007923456, -0.1647763668228], +[-0.2755279963244, -0.1645123398951], +[-0.270350959334, -0.1642545324817], +[-0.2651697652258, -0.1640028641155], +[-0.2599844980027, -0.1637572568979], +[-0.2547952417778, -0.1635176354285], +[-0.2496020807362, -0.1632839267361], +[-0.2444050991004, -0.1630560602128], +[-0.2392043810982, -0.1628339675504], +[-0.2340000109332, -0.1626175826785], +[-0.2287920727583, -0.1624068417057], +[-0.223580650651, -0.1622016828625], +[-0.2183658285917, -0.1620020464465], +[-0.2131476904437, -0.1618078747696], +[-0.2079263199352, -0.1616191121074], +[-0.2027018006437, -0.1614357046501], +[-0.1974742159812, -0.1612576004563], +[-0.1922436491826, -0.1610847494078], +[-0.1870101832944, -0.1609171031661], +[-0.1817739011656, -0.1607546151319], +[-0.1765348854395, -0.1605972404047], +[-0.1712932185478, -0.1604449357454], +[-0.166048982705, -0.1602976595398], +[-0.1608022599042, -0.1601553717637], +[-0.1555531319149, -0.1600180339499], +[-0.1503016802803, -0.1598856091566], +[-0.1450479863172, -0.1597580619366], +[-0.1397921311158, -0.1596353583091], +[-0.1345341955411, -0.1595174657315], +[-0.129274260234, -0.1594043530738], +[-0.124012405615, -0.1592959905931], +[-0.1187487118866, -0.1591923499104], +[-0.1134832590384, -0.159093403988], +[-0.1082161268509, -0.158999127108], +[-0.1029473949017, -0.1589094948523], +[-0.09767714257082, -0.1588244840839], +[-0.09240544904759, -0.1587440729282], +[-0.08713239333749, -0.1586682407571], +[-0.08185805426963, -0.1585969681724], +[-0.07658251050462, -0.1585302369911], +[-0.07130584054292, -0.1584680302321], +[-0.06602812273345, -0.1584103321026], +[-0.06074943528266, -0.1583571279868], +[-0.05546985626383, -0.1583084044344], +[-0.0501894636267, -0.1582641491509], +[-0.04490833520737, -0.1582243509883], +[-0.03962654873839, -0.1581889999367], +[-0.03434418185914, -0.1581580871169], +[-0.02906131212632, -0.1581316047741], +[-0.02377801702465, -0.1581095462717], +[-0.01849437397771, -0.1580919060866], +[-0.01321046035893, -0.1580786798054], +[-0.007926353502545, -0.1580698641208], +[-0.002642130714818, -0.1580654568291], +[0.002642130714818, -0.1580654568291], +[0.007926353502543, -0.1580698641207], +[0.01321046035893, -0.1580786798054], +[0.01849437397772, -0.1580919060866], +[0.02377801702465, -0.1581095462717], +[0.02906131212632, -0.1581316047741], +[0.03434418185914, -0.1581580871169], +[0.03962654873839, -0.1581889999367], +[0.04490833520737, -0.1582243509883], +[0.0501894636267, -0.1582641491509], +[0.05546985626383, -0.1583084044344], +[0.06074943528266, -0.1583571279868], +[0.06602812273345, -0.1584103321026], +[0.07130584054292, -0.1584680302321], +[0.07658251050462, -0.1585302369911], +[0.08185805426963, -0.1585969681724], +[0.08713239333749, -0.1586682407571], +[0.09240544904759, -0.1587440729282], +[0.09767714257082, -0.1588244840839], +[0.1029473949017, -0.1589094948523], +[0.1082161268509, -0.158999127108], +[0.1134832590384, -0.159093403988], +[0.1187487118866, -0.1591923499104], +[0.124012405615, -0.1592959905931], +[0.129274260234, -0.1594043530738], +[0.1345341955411, -0.1595174657315], +[0.1397921311158, -0.1596353583091], +[0.1450479863172, -0.1597580619366], +[0.1503016802803, -0.1598856091566], +[0.1555531319149, -0.1600180339499], +[0.1608022599042, -0.1601553717637], +[0.166048982705, -0.1602976595398], +[0.1712932185478, -0.1604449357454], +[0.1765348854395, -0.1605972404047], +[0.1817739011656, -0.1607546151319], +[0.1870101832944, -0.1609171031661], +[0.1922436491826, -0.1610847494078], +[0.1974742159812, -0.1612576004563], +[0.2027018006437, -0.1614357046501], +[0.2079263199352, -0.1616191121074], +[0.2131476904437, -0.1618078747696], +[0.2183658285917, -0.1620020464465], +[0.223580650651, -0.1622016828625], +[0.2287920727583, -0.1624068417057], +[0.2340000109332, -0.1626175826785], +[0.2392043810982, -0.1628339675504], +[0.2444050991004, -0.1630560602128], +[0.2496020807362, -0.1632839267361], +[0.2547952417778, -0.1635176354285], +[0.2599844980027, -0.1637572568979], +[0.2651697652258, -0.1640028641155], +[0.270350959334, -0.1642545324817], +[0.2755279963244, -0.1645123398951], +[0.2807007923456, -0.1647763668228], +[0.285869263742, -0.1650466963745], +[0.2910333271024, -0.1653234143781], +[0.2961928993118, -0.1656066094588], +[0.3013478976076, -0.1658963731196], +[0.3064982396403, -0.1661927998258], +[0.3116438435379, -0.1664959870913], +[0.3167846279763, -0.1668060355676], +[0.3219205122536, -0.167123049136], +[0.3270514163709, -0.1674471350019], +[0.3321772611176, -0.167778403792], +[0.3372979681637, -0.1681169696541], +[0.3424134601581, -0.1684629503595], +[0.3475236608329, -0.1688164674078], +[0.352628495116, -0.1691776461339], +[0.3577278892498, -0.169546615818], +[0.362821770919, -0.1699235097966], +[0.3679100693851, -0.1703084655766], +[0.3729927156308, -0.1707016249507], +[0.3780696425129, -0.1711031341142], +[0.3831407849246, -0.1715131437832], +[0.3882060799676, -0.1719318093139], +[0.393265467135, -0.1723592908225], +[0.3983188885045, -0.1727957533049], +[0.4033662889433, -0.1732413667565], +[0.408407616324, -0.1736963062907], +[0.4134428217532, -0.174160752257], +[0.4184718598123, -0.1746348903551], +[0.4234946888112, -0.1751189117481], +[0.4285112710553, -0.1756130131705], +[0.4335215731258, -0.1761173970322], +[0.4385255661742, -0.1766322715163], +[0.4435232262299, -0.1771578506705], +[0.4485145345231, -0.1776943544896], +[0.4534994778205, -0.1782420089894], +[0.4584780487761, -0.1788010462683], +[0.4634502462948, -0.1793717045572], +[0.4684160759102, -0.1799542282547], +[0.4733755501744, -0.1805488679453], +[0.4783286890614, -0.1811558804001], +[0.4832755203796, -0.1817755285567], +[0.4882160801966, -0.1824080814756], +[0.4931504132707, -0.183053814273], +[0.4980785734908, -0.1837130080246], +[0.5030006243198, -0.1843859496399], +[0.507916639242, -0.1850729317041], +[0.5128267022085, -0.1857742522844], +[0.517730908081, -0.1864902146982], +[0.5226293630675, -0.1872211272423], +[0.5275221851481, -0.1879673028773], +[0.5324090264358, -0.1887285427772], +[-0.5299012660222, -0.1843851234623], +[-0.5250015938585, -0.1836259425852], +[-0.5200961525316, -0.1828816824663], +[-0.5151853454369, -0.182152490103], +[-0.5102690594994, -0.1814380631596], +[-0.5053471927648, -0.1807381037256], +[-0.5004196540062, -0.1800523186084], +[-0.4954863623211, -0.1793804195879], +[-0.490547246721, -0.1787221236335], +[-0.4856022457189, -0.178077153087], +[-0.4806513069146, -0.1774452358127], +[-0.4756943865835, -0.1768261053183], +[-0.4707314492679, -0.1762195008469], +[-0.4657624673757, -0.1756251674449], +[-0.4607874207852, -0.1750428560055], +[-0.45580629646, -0.1744723232916], +[-0.4508190880725, -0.1739133319394], +[-0.4458257956395, -0.1733656504453], +[-0.4408264251688, -0.1728290531364], +[-0.4358209883171, -0.1723033201285], +[-0.4308095020619, -0.1717882372712], +[-0.4257919883845, -0.1712835960831], +[-0.4207684739665, -0.1707891936774], +[-0.4157389898996, -0.1703048326798], +[-0.4107035714068, -0.1698303211397], +[-0.4056622575775, -0.1693654724354], +[-0.4006150911142, -0.1689101051754], +[-0.3955621180918, -0.1684640430954], +[-0.3905033877284, -0.168027114952], +[-0.3854389521681, -0.1675991544148], +[-0.3803688662745, -0.1671799999567], +[-0.3752931874353, -0.166769494743], +[-0.3702119753774, -0.1663674865199], +[-0.3651252919917, -0.1659738275035], +[-0.3600332011682, -0.1655883742686], +[-0.3549357686397, -0.1652109876381], +[-0.3498330618348, -0.1648415325742], +[-0.3447251497392, -0.16447987807], +[-0.3396121027649, -0.1641258970432], +[-0.3344939926281, -0.1637794662313], +[-0.3293708922328, -0.1634404660882], +[-0.3242428755631, -0.1631087806843], +[-0.3191100175813, -0.1627842976066], +[-0.3139723941321, -0.1624669078632], +[-0.3088300818537, -0.1621565057883], +[-0.3036831580937, -0.1618529889508], +[-0.298531700831, -0.1615562580647], +[-0.2933757886028, -0.1612662169022], +[-0.2882155004363, -0.160982772209], +[-0.2830509157846, -0.1607058336223], +[-0.2778821144683, -0.1604353135912], +[-0.2727091766195, -0.1601711272996], +[-0.2675321826311, -0.1599131925909], +[-0.2623512131093, -0.1596614298966], +[-0.2571663488293, -0.1594157621653], +[-0.2519776706946, -0.1591761147959], +[-0.2467852596998, -0.1589424155714], +[-0.2415891968957, -0.1587145945968], +[-0.2363895633577, -0.1584925842373], +[-0.2311864401564, -0.1582763190604], +[-0.2259799083312, -0.1580657357785], +[-0.2207700488659, -0.1578607731953], +[-0.2155569426666, -0.1576613721527], +[-0.2103406705419, -0.1574674754804], +[-0.2051213131849, -0.1572790279477], +[-0.1998989511572, -0.1570959762164], +[-0.1946736648744, -0.1569182687963], +[-0.189445534594, -0.1567458560021], +[-0.1842146404037, -0.1565786899117], +[-0.1789810622126, -0.1564167243272], +[-0.1737448797426, -0.1562599147365], +[-0.1685061725219, -0.1561082182771], +[-0.1632650198795, -0.1559615937009], +[-0.1580215009406, -0.1558200013414], +[-0.152775694624, -0.1556834030817], +[-0.1475276796395, -0.1555517623238], +[-0.142277534487, -0.1554250439597], +[-0.1370253374562, -0.1553032143439], +[-0.1317711666273, -0.1551862412667], +[-0.1265150998729, -0.1550740939291], +[-0.1212572148597, -0.1549667429193], +[-0.1159975890522, -0.1548641601895], +[-0.1107362997161, -0.1547663190345], +[-0.1054734239226, -0.1546731940719], +[-0.100209038554, -0.1545847612218], +[-0.09494322030856, -0.1545009976895], +[-0.0896760457072, -0.1544218819481], +[-0.08440759109981, -0.1543473937222], +[-0.07913793267248, -0.1542775139731], +[-0.07386714645501, -0.1542122248843], +[-0.06859530832879, -0.154151509849], +[-0.06332249403513, -0.1540953534572], +[-0.0580487791839, -0.1540437414848], +[-0.05277423926246, -0.1539966608832], +[-0.04749894964492, -0.1539540997697], +[-0.04222298560162, -0.1539160474188], +[-0.03694642230885, -0.1538824942548], +[-0.03166933485876, -0.1538534318445], +[-0.02639179826957, -0.1538288528914], +[-0.02111388749576, -0.1538087512303], +[-0.0158356774385, -0.153793121823], +[-0.01055724295621, -0.1537819607546], +[-0.005278658875114, -0.1537752652307], +[-7.897979417936e-15, -0.1537730335756], +[0.005278658875114, -0.1537752652308], +[0.01055724295621, -0.1537819607546], +[0.01583567743851, -0.153793121823], +[0.02111388749576, -0.1538087512303], +[0.02639179826957, -0.1538288528914], +[0.03166933485876, -0.1538534318445], +[0.03694642230883, -0.1538824942547], +[0.04222298560162, -0.1539160474188], +[0.04749894964495, -0.1539540997697], +[0.05277423926246, -0.1539966608832], +[0.0580487791839, -0.1540437414848], +[0.06332249403513, -0.1540953534572], +[0.06859530832879, -0.154151509849], +[0.07386714645501, -0.1542122248843], +[0.07913793267248, -0.1542775139731], +[0.08440759109981, -0.1543473937222], +[0.0896760457072, -0.1544218819481], +[0.09494322030857, -0.1545009976895], +[0.100209038554, -0.1545847612218], +[0.1054734239226, -0.1546731940719], +[0.1107362997161, -0.1547663190345], +[0.1159975890522, -0.1548641601895], +[0.1212572148597, -0.1549667429193], +[0.1265150998729, -0.1550740939291], +[0.1317711666273, -0.1551862412667], +[0.1370253374562, -0.1553032143439], +[0.142277534487, -0.1554250439597], +[0.1475276796395, -0.1555517623238], +[0.152775694624, -0.1556834030817], +[0.1580215009406, -0.1558200013414], +[0.1632650198795, -0.1559615937009], +[0.1685061725219, -0.1561082182771], +[0.1737448797426, -0.1562599147365], +[0.1789810622126, -0.1564167243272], +[0.1842146404037, -0.1565786899117], +[0.189445534594, -0.1567458560021], +[0.1946736648744, -0.1569182687963], +[0.1998989511572, -0.1570959762164], +[0.2051213131849, -0.1572790279477], +[0.2103406705419, -0.1574674754804], +[0.2155569426666, -0.1576613721527], +[0.2207700488659, -0.1578607731953], +[0.2259799083312, -0.1580657357785], +[0.2311864401564, -0.1582763190604], +[0.2363895633577, -0.1584925842373], +[0.2415891968957, -0.1587145945968], +[0.2467852596998, -0.1589424155714], +[0.2519776706946, -0.1591761147958], +[0.2571663488293, -0.1594157621653], +[0.2623512131093, -0.1596614298966], +[0.2675321826311, -0.1599131925909], +[0.2727091766195, -0.1601711272996], +[0.2778821144683, -0.1604353135912], +[0.2830509157846, -0.1607058336223], +[0.2882155004363, -0.160982772209], +[0.2933757886028, -0.1612662169022], +[0.298531700831, -0.1615562580647], +[0.3036831580937, -0.1618529889508], +[0.3088300818537, -0.1621565057883], +[0.3139723941321, -0.1624669078632], +[0.3191100175813, -0.1627842976066], +[0.3242428755631, -0.1631087806843], +[0.3293708922328, -0.1634404660882], +[0.3344939926281, -0.1637794662313], +[0.3396121027649, -0.1641258970432], +[0.3447251497392, -0.16447987807], +[0.3498330618348, -0.1648415325742], +[0.3549357686397, -0.1652109876381], +[0.3600332011682, -0.1655883742686], +[0.3651252919917, -0.1659738275035], +[0.3702119753774, -0.1663674865199], +[0.3752931874353, -0.166769494743], +[0.3803688662745, -0.1671799999567], +[0.3854389521681, -0.1675991544148], +[0.3905033877284, -0.168027114952], +[0.3955621180918, -0.1684640430954], +[0.4006150911142, -0.1689101051754], +[0.4056622575775, -0.1693654724354], +[0.4107035714068, -0.1698303211397], +[0.4157389898996, -0.1703048326798], +[0.4207684739665, -0.1707891936774], +[0.4257919883845, -0.1712835960831], +[0.4308095020619, -0.1717882372712], +[0.4358209883171, -0.1723033201285], +[0.4408264251688, -0.1728290531364], +[0.4458257956395, -0.1733656504453], +[0.4508190880725, -0.1739133319394], +[0.45580629646, -0.1744723232916], +[0.4607874207853, -0.1750428560055], +[0.4657624673757, -0.1756251674449], +[0.4707314492679, -0.1762195008469], +[0.4756943865835, -0.1768261053183], +[0.4806513069146, -0.1774452358127], +[0.4856022457189, -0.178077153087], +[0.490547246721, -0.1787221236335], +[0.4954863623211, -0.1793804195879], +[0.5004196540062, -0.1800523186084], +[0.5053471927648, -0.1807381037256], +[0.5102690594994, -0.1814380631596], +[0.5151853454369, -0.182152490103], +[0.5200961525316, -0.1828816824663], +[0.5250015938585, -0.1836259425852], +[0.5299012660194, -0.1843851234928], +[-0.527384423468, -0.180026190253], +[-0.5224723793052, -0.1792690801039], +[-0.5175547228085, -0.1785268867184], +[-0.5126319611332, -0.1777995719727], +[-0.5077039858532, -0.1770868436164], +[-0.5027706990551, -0.1763884136014], +[-0.4978320129747, -0.1757039983563], +[-0.4928878496231, -0.1750333190236], +[-0.4879381404073, -0.1743761016644], +[-0.4829828257468, -0.1737320774305], +[-0.4780218546897, -0.1731009827076], +[-0.47305518453, -0.1724825592303], +[-0.4680827804281, -0.1718765541718], +[-0.4631046150366, -0.1712827202099], +[-0.4581206681327, -0.1707008155717], +[-0.453130926258, -0.1701306040584], +[-0.4481353823672, -0.1695718550523], +[-0.443134035487, -0.1690243435076], +[-0.4381268903843, -0.1684878499275], +[-0.4331139572462, -0.1679621603271], +[-0.4280952513708, -0.1674470661865], +[-0.4230707928692, -0.1669423643926], +[-0.4180406063796, -0.1664478571728], +[-0.4130047207926, -0.1659633520207], +[-0.4079631689887, -0.1654886616161], +[-0.4029159875869, -0.1650236037386], +[-0.3978632167046, -0.1645680011768], +[-0.392804899729, -0.1641216816345], +[-0.3877410830996, -0.1636844776328], +[-0.3826718161008, -0.1632562264104], +[-0.3775971506654, -0.1628367698224], +[-0.3725171411876, -0.1624259542377], +[-0.3674318443467, -0.1620236304353], +[-0.362341318939, -0.161629653501], +[-0.3572456257194, -0.1612438827241], +[-0.352144827252, -0.1608661814943], +[-0.347038987768, -0.1604964171994], +[-0.3419281730325, -0.1601344611247], +[-0.3368124502187, -0.1597801883528], +[-0.3316918877891, -0.1594334776652], +[-0.3265665553839, -0.159094211446], +[-0.3214365237164, -0.1587622755865], +[-0.3163018644738, -0.1584375593926], +[-0.3111626502249, -0.1581199554934], +[-0.3060189543333, -0.1578093597528], +[-0.3008708508756, -0.1575056711821], +[-0.2957184145656, -0.157208791856], +[-0.2905617206825, -0.1569186268297], +[-0.2854008450048, -0.1566350840592], +[-0.2802358637473, -0.1563580743232], +[-0.2750668535039, -0.1560875111478], +[-0.2698938911929, -0.1558233107329], +[-0.264717054007, -0.1555653918811], +[-0.2595364193664, -0.1553136759294], +[-0.254352064876, -0.1550680866819], +[-0.2491640682845, -0.1548285503457], +[-0.2439725074481, -0.1545949954688], +[-0.2387774602956, -0.1543673528796], +[-0.2335790047977, -0.154145555629], +[-0.2283772189373, -0.1539295389344], +[-0.2231721806838, -0.1537192401256], +[-0.2179639679683, -0.1535145985926], +[-0.212752658662, -0.153315555736], +[-0.2075383305564, -0.1531220549181], +[-0.202321061345, -0.1529340414167], +[-0.1971009286076, -0.1527514623805], +[-0.1918780097954, -0.1525742667862], +[-0.1866523822189, -0.1524024053972], +[-0.1814241230366, -0.1522358307241], +[-0.1761933092449, -0.1520744969868], +[-0.1709600176704, -0.1519183600779], +[-0.1657243249628, -0.1517673775281], +[-0.1604863075889, -0.1516215084727], +[-0.1552460418283, -0.1514807136197], +[-0.1500036037702, -0.1513449552192], +[-0.1447590693106, -0.1512141970346], +[-0.1395125141512, -0.151088404314], +[-0.1342640137987, -0.1509675437646], +[-0.1290136435656, -0.1508515835268], +[-0.1237614785711, -0.1507404931502], +[-0.1185075937433, -0.150634243571], +[-0.113252063822, -0.1505328070901], +[-0.107994963362, -0.1504361573527], +[-0.1027363667372, -0.1503442693284], +[-0.09747634814556, -0.1502571192935], +[-0.09221498161408, -0.1501746848128], +[-0.08695234100473, -0.1500969447241], +[-0.08168850002071, -0.1500238791223], +[-0.07642353221321, -0.1499554693452], +[-0.0711575109886, -0.1498916979603], +[-0.065890509616, -0.1498325487518], +[-0.06062260123522, -0.1497780067098], +[-0.05535385886504, -0.1497280580189], +[-0.05008435541176, -0.149682690049], +[-0.04481416367816, -0.149641891346], +[-0.0395433563725, -0.1496056516239], +[-0.03427200611796, -0.1495739617576], +[-0.02900018546213, -0.1495468137766], +[-0.02372796688677, -0.1495242008591], +[-0.01845542281766, -0.1495061173278], +[-0.0131826256346, -0.1494925586453], +[-0.007909647681559, -0.1494835214114], +[-0.002636561276804, -0.1494790033606], +[0.002636561276804, -0.1494790033606], +[0.007909647681559, -0.1494835214114], +[0.0131826256346, -0.1494925586453], +[0.01845542281766, -0.1495061173278], +[0.02372796688677, -0.1495242008591], +[0.02900018546213, -0.1495468137766], +[0.03427200611796, -0.1495739617576], +[0.0395433563725, -0.1496056516239], +[0.04481416367816, -0.149641891346], +[0.05008435541176, -0.149682690049], +[0.05535385886505, -0.149728058019], +[0.06062260123522, -0.1497780067098], +[0.065890509616, -0.1498325487518], +[0.0711575109886, -0.1498916979603], +[0.07642353221321, -0.1499554693452], +[0.08168850002071, -0.1500238791223], +[0.08695234100473, -0.1500969447241], +[0.09221498161409, -0.1501746848128], +[0.09747634814556, -0.1502571192935], +[0.1027363667372, -0.1503442693284], +[0.107994963362, -0.1504361573527], +[0.113252063822, -0.1505328070901], +[0.1185075937433, -0.150634243571], +[0.1237614785711, -0.1507404931502], +[0.1290136435656, -0.1508515835268], +[0.1342640137987, -0.1509675437646], +[0.1395125141512, -0.151088404314], +[0.1447590693106, -0.1512141970346], +[0.1500036037702, -0.1513449552192], +[0.1552460418283, -0.1514807136197], +[0.1604863075889, -0.1516215084727], +[0.1657243249628, -0.1517673775281], +[0.1709600176704, -0.1519183600779], +[0.1761933092449, -0.1520744969868], +[0.1814241230366, -0.1522358307241], +[0.1866523822189, -0.1524024053972], +[0.1918780097954, -0.1525742667862], +[0.1971009286076, -0.1527514623805], +[0.202321061345, -0.1529340414167], +[0.2075383305564, -0.1531220549181], +[0.212752658662, -0.153315555736], +[0.2179639679683, -0.1535145985926], +[0.2231721806838, -0.1537192401256], +[0.2283772189373, -0.1539295389344], +[0.2335790047977, -0.154145555629], +[0.2387774602956, -0.1543673528796], +[0.2439725074481, -0.1545949954688], +[0.2491640682845, -0.1548285503457], +[0.254352064876, -0.1550680866819], +[0.2595364193664, -0.1553136759294], +[0.264717054007, -0.1555653918811], +[0.2698938911929, -0.1558233107329], +[0.2750668535039, -0.1560875111478], +[0.2802358637473, -0.1563580743232], +[0.2854008450048, -0.1566350840592], +[0.2905617206825, -0.1569186268297], +[0.2957184145656, -0.157208791856], +[0.3008708508756, -0.1575056711821], +[0.3060189543333, -0.1578093597528], +[0.3111626502249, -0.1581199554934], +[0.3163018644738, -0.1584375593926], +[0.3214365237164, -0.1587622755865], +[0.3265665553839, -0.159094211446], +[0.3316918877891, -0.1594334776652], +[0.3368124502187, -0.1597801883528], +[0.3419281730325, -0.1601344611247], +[0.347038987768, -0.1604964171994], +[0.352144827252, -0.1608661814943], +[0.3572456257194, -0.1612438827241], +[0.362341318939, -0.161629653501], +[0.3674318443467, -0.1620236304353], +[0.3725171411876, -0.1624259542377], +[0.3775971506654, -0.1628367698224], +[0.3826718161008, -0.1632562264104], +[0.3877410830996, -0.1636844776328], +[0.392804899729, -0.1641216816345], +[0.3978632167046, -0.1645680011768], +[0.4029159875869, -0.1650236037386], +[0.4079631689887, -0.1654886616161], +[0.4130047207926, -0.1659633520207], +[0.4180406063796, -0.1664478571728], +[0.4230707928692, -0.1669423643926], +[0.4280952513708, -0.1674470661865], +[0.4331139572462, -0.1679621603271], +[0.4381268903843, -0.1684878499275], +[0.443134035487, -0.1690243435076], +[0.4481353823672, -0.1695718550523], +[0.453130926258, -0.1701306040584], +[0.4581206681327, -0.1707008155717], +[0.4631046150366, -0.1712827202099], +[0.4680827804281, -0.1718765541718], +[0.47305518453, -0.1724825592303], +[0.4780218546897, -0.1731009827076], +[0.4829828257468, -0.1737320774305], +[0.4879381404073, -0.1743761016644], +[0.4928878496231, -0.1750333190236], +[0.4978320129747, -0.1757039983563], +[0.5027706990551, -0.1763884136015], +[0.5077039858532, -0.1770868436164], +[0.5126319611332, -0.1777995719727], +[0.5175547228085, -0.1785268867184], +[0.5224723793052, -0.1792690801039], +[0.5273844234649, -0.18002619029], +[-0.5248588383599, -0.1756518752571], +[-0.5199347240689, -0.1748970487101], +[-0.5150052452452, -0.1741570698816], +[-0.5100709156421, -0.1734317864529], +[-0.5051316312398, -0.1727209157559], +[-0.5001872979633, -0.1720241791183], +[-0.4952378313453, -0.1713413021192], +[-0.4902831561793, -0.1706720148122], +[-0.4853232061678, -0.170016051917], +[-0.4803579235661, -0.1693731529828], +[-0.475387258826, -0.1687430625236], +[-0.4704111702395, -0.1681255301289], +[-0.4654296235858, -0.1675203105493], +[-0.4604425917823, -0.1669271637626], +[-0.4554500545418, -0.1663458550173], +[-0.4504519980357, -0.1657761548602], +[-0.445448414566, -0.1652178391453], +[-0.440439302245, -0.1646706890296], +[-0.4354246646849, -0.1641344909534], +[-0.430404510697, -0.1636090366104], +[-0.4253788540005, -0.1630941229054], +[-0.4203477129428, -0.1625895519036], +[-0.415311110229, -0.1620951307711], +[-0.4102690726632, -0.1616106717079], +[-0.4052216308997, -0.1611359918755], +[-0.4001688192054, -0.160670913318], +[-0.3951106752317, -0.1602152628796], +[-0.3900472397981, -0.159768872118], +[-0.3849785566845, -0.1593315772146], +[-0.3799046724343, -0.1589032188831], +[-0.3748256361669, -0.1584836422751], +[-0.3697414993993, -0.1580726968853], +[-0.364652315877, -0.157670236456], +[-0.3595581414139, -0.1572761188802], +[-0.3544590337397, -0.1568902061056], +[-0.3493550523567, -0.1565123640385], +[-0.3442462584035, -0.1561424624486], +[-0.3391327145267, -0.1557803748741], +[-0.3340144847593, -0.1554259785282], +[-0.3288916344065, -0.1550791542072], +[-0.3237642299379, -0.1547397861992], +[-0.3186323388857, -0.1544077621952], +[-0.3134960297496, -0.1540829732012], +[-0.3083553719066, -0.1537653134527], +[-0.3032104355268, -0.1534546803307], +[-0.2980612914944, -0.1531509742798], +[-0.2929080113332, -0.152854098728], +[-0.2877506671373, -0.1525639600091], +[-0.2825893315059, -0.1522804672865], +[-0.2774240774829, -0.1520035324799], +[-0.2722549784996, -0.151733070193], +[-0.2670821083222, -0.1514689976444], +[-0.2619055410025, -0.1512112346], +[-0.2567253508317, -0.1509597033074], +[-0.2515416122984, -0.1507143284325], +[-0.2463544000487, -0.1504750369987], +[-0.2411637888498, -0.1502417583268], +[-0.2359698535565, -0.1500144239785], +[-0.23077266908, -0.1497929677003], +[-0.2255723103591, -0.1495773253707], +[-0.2203688523344, -0.1493674349483], +[-0.215162369924, -0.149163236422], +[-0.2099529380019, -0.1489646717634], +[-0.2047406313784, -0.1487716848807], +[-0.1995255247817, -0.1485842215741], +[-0.1943076928421, -0.148402229493], +[-0.1890872100777, -0.1482256580956], +[-0.1838641508816, -0.1480544586088], +[-0.1786385895107, -0.1478885839906], +[-0.1734106000758, -0.1477279888941], +[-0.1681802565332, -0.1475726296322], +[-0.1629476326781, -0.1474224641445], +[-0.1577128021378, -0.1472774519654], +[-0.152475838368, -0.1471375541935], +[-0.1472368146484, -0.1470027334622], +[-0.1419958040806, -0.1468729539121], +[-0.1367528795862, -0.1467481811643], +[-0.1315081139063, -0.1466283822949], +[-0.1262615796015, -0.1465135258109], +[-0.1210133490531, -0.1464035816272], +[-0.1157634944648, -0.1462985210446], +[-0.110512087865, -0.1461983167295], +[-0.1052592011102, -0.1461029426938], +[-0.1000049058888, -0.1460123742764], +[-0.0947492737254, -0.1459265881259], +[-0.08949237598584, -0.1458455621839], +[-0.08423428388264, -0.1457692756692], +[-0.07897506848103, -0.145697709064], +[-0.07371480070536, -0.1456308440992], +[-0.06845355134597, -0.1455686637425], +[-0.06319139106643, -0.1455111521865], +[-0.05792839041116, -0.1454582948373], +[-0.05266461981335, -0.1454100783051], +[-0.04740014960322, -0.1453664903945], +[-0.04213505001651, -0.1453275200965], +[-0.03686939120325, -0.1452931575807], +[-0.03160324323675, -0.1452633941891], +[-0.02633667612273, -0.1452382224297], +[-0.02106975980873, -0.1452176359716], +[-0.01580256419354, -0.145201629641], +[-0.0105351591368, -0.1451901994171], +[-0.005267614468768, -0.1451833424303], +[-1.607939438756e-13, -0.1451810569592], +[0.005267614468768, -0.1451833424303], +[0.0105351591368, -0.1451901994171], +[0.01580256419354, -0.145201629641], +[0.02106975980873, -0.1452176359716], +[0.02633667612273, -0.1452382224297], +[0.03160324323675, -0.1452633941891], +[0.03686939120325, -0.1452931575807], +[0.04213505001651, -0.1453275200965], +[0.04740014960322, -0.1453664903945], +[0.05266461981335, -0.1454100783051], +[0.05792839041116, -0.1454582948373], +[0.06319139106643, -0.1455111521865], +[0.06845355134597, -0.1455686637425], +[0.07371480070536, -0.1456308440992], +[0.07897506848103, -0.145697709064], +[0.08423428388264, -0.1457692756692], +[0.08949237598584, -0.1458455621839], +[0.0947492737254, -0.1459265881259], +[0.1000049058888, -0.1460123742764], +[0.1052592011102, -0.1461029426938], +[0.110512087865, -0.1461983167295], +[0.1157634944648, -0.1462985210446], +[0.1210133490531, -0.1464035816272], +[0.1262615796015, -0.1465135258109], +[0.1315081139063, -0.1466283822949], +[0.1367528795862, -0.1467481811643], +[0.1419958040806, -0.1468729539121], +[0.1472368146484, -0.1470027334622], +[0.152475838368, -0.1471375541935], +[0.1577128021378, -0.1472774519654], +[0.1629476326781, -0.1474224641445], +[0.1681802565332, -0.1475726296322], +[0.1734106000758, -0.1477279888941], +[0.1786385895107, -0.1478885839906], +[0.1838641508816, -0.1480544586088], +[0.1890872100778, -0.1482256580956], +[0.1943076928421, -0.148402229493], +[0.1995255247817, -0.1485842215741], +[0.2047406313784, -0.1487716848807], +[0.2099529380019, -0.1489646717634], +[0.215162369924, -0.149163236422], +[0.2203688523344, -0.1493674349483], +[0.2255723103591, -0.1495773253707], +[0.23077266908, -0.1497929677003], +[0.2359698535565, -0.1500144239785], +[0.2411637888498, -0.1502417583268], +[0.2463544000487, -0.1504750369987], +[0.2515416122984, -0.1507143284325], +[0.2567253508317, -0.1509597033074], +[0.2619055410025, -0.1512112346], +[0.2670821083222, -0.1514689976444], +[0.2722549784996, -0.151733070193], +[0.2774240774829, -0.1520035324799], +[0.2825893315059, -0.1522804672865], +[0.2877506671373, -0.1525639600091], +[0.2929080113332, -0.152854098728], +[0.2980612914944, -0.1531509742798], +[0.3032104355268, -0.1534546803307], +[0.3083553719066, -0.1537653134527], +[0.3134960297496, -0.1540829732012], +[0.3186323388857, -0.1544077621952], +[0.3237642299379, -0.1547397861992], +[0.3288916344065, -0.1550791542072], +[0.3340144847593, -0.1554259785282], +[0.3391327145267, -0.1557803748741], +[0.3442462584035, -0.1561424624486], +[0.3493550523567, -0.1565123640385], +[0.3544590337397, -0.1568902061056], +[0.3595581414139, -0.1572761188802], +[0.364652315877, -0.157670236456], +[0.3697414993993, -0.1580726968853], +[0.3748256361669, -0.1584836422751], +[0.3799046724343, -0.1589032188831], +[0.3849785566845, -0.1593315772146], +[0.3900472397981, -0.159768872118], +[0.3951106752317, -0.1602152628796], +[0.4001688192054, -0.160670913318], +[0.4052216308997, -0.1611359918755], +[0.4102690726632, -0.1616106717079], +[0.415311110229, -0.1620951307711], +[0.4203477129428, -0.1625895519036], +[0.4253788540005, -0.1630941229054], +[0.430404510697, -0.1636090366104], +[0.4354246646849, -0.1641344909534], +[0.440439302245, -0.1646706890296], +[0.445448414566, -0.1652178391453], +[0.4504519980357, -0.1657761548602], +[0.4554500545418, -0.1663458550173], +[0.4604425917823, -0.1669271637626], +[0.4654296235858, -0.1675203105493], +[0.4704111702395, -0.1681255301289], +[0.475387258826, -0.1687430625236], +[0.4803579235661, -0.1693731529828], +[0.4853232061678, -0.170016051917], +[0.4902831561793, -0.1706720148122], +[0.4952378313453, -0.1713413021192], +[0.5001872979633, -0.1720241791183], +[0.5051316312398, -0.1727209157559], +[0.5100709156421, -0.1734317864529], +[0.5150052452452, -0.1741570698816], +[0.5199347240689, -0.1748970487101], +[0.5248588379347, -0.1756518796568], +[-0.5223252324629, -0.1712625873702], +[-0.5173888062008, -0.1705101728746], +[-0.5124478872574, -0.1697725531802], +[-0.5075023660747, -0.1690494512002], +[-0.5025521428097, -0.1683405933805], +[-0.4975971270326, -0.1676457099701], +[-0.4926372374132, -0.1669645352599], +[-0.4876724013997, -0.166296807792], +[-0.4827025548912, -0.1656422705398], +[-0.4777276419069, -0.1650006710627], +[-0.4727476142545, -0.1643717616345], +[-0.4677624311986, -0.1637552993488], +[-0.4627720591314, -0.1631510462026], +[-0.4577764712475, -0.1625587691598], +[-0.4527756472235, -0.1619782401956], +[-0.4477695729031, -0.1614092363247], +[-0.44275823999, -0.1608515396131], +[-0.4377416457479, -0.1603049371765], +[-0.432719792709, -0.159769221166], +[-0.427692688391, -0.1592441887414], +[-0.4226603450241, -0.1587296420361], +[-0.4176227792862, -0.1582253881108], +[-0.4125800120488, -0.1577312389014], +[-0.4075320681321, -0.1572470111582], +[-0.4024789760697, -0.1567725263803], +[-0.3974207678834, -0.156307610744], +[-0.3923574788676, -0.1558520950271], +[-0.3872891473825, -0.1554058145299], +[-0.3822158146579, -0.1549686089923], +[-0.377137524605, -0.1545403225097], +[-0.3720543236377, -0.1541208034456], +[-0.3669662605025, -0.1537099043442], +[-0.3618733861166, -0.1533074818411], +[-0.3567757534147, -0.1529133965738], +[-0.3516734172032, -0.1525275130922], +[-0.3465664340223, -0.1521496997689], +[-0.341454862015, -0.1517798287101], +[-0.336338760804, -0.1514177756669], +[-0.3312181913746, -0.1510634199482], +[-0.3260932159644, -0.1507166443337], +[-0.3209638979592, -0.1503773349888], +[-0.3158303017951, -0.1500453813807], +[-0.3106924928656, -0.1497206761958], +[-0.305550537435, -0.1494031152592], +[-0.3004045025564, -0.1490925974552], +[-0.295254455995, -0.1487890246504], +[-0.2901004661559, -0.1484923016176], +[-0.2849426020164, -0.1482023359625], +[-0.2797809330625, -0.1479190380519], +[-0.2746155292303, -0.1476423209434], +[-0.2694464608497, -0.147372100318], +[-0.2642737985932, -0.1471082944139], +[-0.2590976134278, -0.146850823962], +[-0.2539179765697, -0.1465996121246], +[-0.2487349594427, -0.1463545844342], +[-0.2435486336399, -0.1461156687362], +[-0.238359070887, -0.1458827951315], +[-0.23316634301, -0.1456558959227], +[-0.227970521904, -0.1454349055609], +[-0.2227716795051, -0.1452197605951], +[-0.2175698877649, -0.1450103996227], +[-0.2123652186263, -0.1448067632426], +[-0.2071577440024, -0.144608794009], +[-0.2019475357564, -0.1444164363876], +[-0.1967346656842, -0.1442296367135], +[-0.1915192054981, -0.1440483431499], +[-0.1863012268129, -0.1438725056496], +[-0.1810808011326, -0.1437020759165], +[-0.1758579998395, -0.1435370073704], +[-0.1706328941844, -0.1433772551114], +[-0.1654055552782, -0.1432227758873], +[-0.1601760540841, -0.1430735280613], +[-0.1549444614125, -0.142929471582], +[-0.1497108479156, -0.1427905679535], +[-0.1444752840837, -0.1426567802079], +[-0.1392378402424, -0.1425280728787], +[-0.1339985865511, -0.1424044119752], +[-0.1287575930018, -0.1422857649583], +[-0.1235149294191, -0.1421721007173], +[-0.1182706654611, -0.1420633895482], +[-0.1130248706211, -0.1419596031327], +[-0.1077776142294, -0.1418607145184], +[-0.1025289654564, -0.1417666981], +[-0.09727899331645, -0.1416775296018], +[-0.09202776667165, -0.1415931860611], +[-0.08677535423664, -0.141513645812], +[-0.08152182458385, -0.141438888471], +[-0.07626724614916, -0.1413688949231], +[-0.07101168723804, -0.141303647309], +[-0.06575521603217, -0.1412431290127], +[-0.06049790059631, -0.1411873246509], +[-0.05523980888558, -0.1411362200622], +[-0.04998100875314, -0.141089802298], +[-0.04472156795806, -0.141048059614], +[-0.0394615541735, -0.1410109814618], +[-0.03420103499511, -0.1409785584828], +[-0.02894007794968, -0.1409507825015], +[-0.02367875050396, -0.1409276465202], +[-0.01841712007359, -0.1409091447144], +[-0.01315525403223, -0.1408952724291], +[-0.007893219720792, -0.1408860261759], +[-0.002631084456702, -0.1408814036302], +[0.002631084456702, -0.1408814036302], +[0.007893219720793, -0.1408860261759], +[0.01315525403223, -0.1408952724291], +[0.01841712007359, -0.1409091447144], +[0.02367875050396, -0.1409276465202], +[0.02894007794968, -0.1409507825015], +[0.03420103499511, -0.1409785584828], +[0.0394615541735, -0.1410109814618], +[0.04472156795806, -0.141048059614], +[0.04998100875314, -0.141089802298], +[0.05523980888558, -0.1411362200622], +[0.06049790059631, -0.1411873246509], +[0.06575521603217, -0.1412431290127], +[0.07101168723804, -0.141303647309], +[0.07626724614915, -0.1413688949231], +[0.08152182458382, -0.141438888471], +[0.08677535423664, -0.141513645812], +[0.09202776667165, -0.1415931860611], +[0.09727899331645, -0.1416775296018], +[0.1025289654564, -0.1417666981], +[0.1077776142294, -0.1418607145184], +[0.1130248706211, -0.1419596031327], +[0.1182706654611, -0.1420633895482], +[0.1235149294191, -0.1421721007173], +[0.1287575930018, -0.1422857649583], +[0.1339985865511, -0.1424044119752], +[0.1392378402424, -0.1425280728787], +[0.1444752840837, -0.1426567802079], +[0.1497108479156, -0.1427905679535], +[0.1549444614125, -0.142929471582], +[0.1601760540841, -0.1430735280613], +[0.1654055552782, -0.1432227758873], +[0.1706328941844, -0.1433772551114], +[0.1758579998395, -0.1435370073704], +[0.1810808011326, -0.1437020759165], +[0.1863012268129, -0.1438725056496], +[0.1915192054981, -0.1440483431499], +[0.1967346656842, -0.1442296367135], +[0.2019475357564, -0.1444164363876], +[0.2071577440024, -0.144608794009], +[0.2123652186263, -0.1448067632426], +[0.2175698877649, -0.1450103996227], +[0.2227716795051, -0.1452197605951], +[0.227970521904, -0.1454349055609], +[0.23316634301, -0.1456558959227], +[0.238359070887, -0.1458827951315], +[0.2435486336399, -0.1461156687362], +[0.2487349594427, -0.1463545844342], +[0.2539179765697, -0.1465996121246], +[0.2590976134278, -0.146850823962], +[0.2642737985932, -0.1471082944139], +[0.2694464608497, -0.147372100318], +[0.2746155292303, -0.1476423209434], +[0.2797809330625, -0.1479190380519], +[0.2849426020164, -0.1482023359625], +[0.2901004661559, -0.1484923016176], +[0.295254455995, -0.1487890246504], +[0.3004045025564, -0.1490925974552], +[0.305550537435, -0.1494031152592], +[0.3106924928656, -0.1497206761958], +[0.3158303017951, -0.1500453813807], +[0.3209638979592, -0.1503773349888], +[0.3260932159644, -0.1507166443337], +[0.3312181913746, -0.1510634199482], +[0.336338760804, -0.1514177756669], +[0.341454862015, -0.1517798287101], +[0.3465664340223, -0.1521496997689], +[0.3516734172032, -0.1525275130922], +[0.3567757534147, -0.1529133965738], +[0.3618733861166, -0.1533074818411], +[0.3669662605025, -0.1537099043442], +[0.3720543236377, -0.1541208034456], +[0.377137524605, -0.1545403225097], +[0.3822158146579, -0.1549686089923], +[0.3872891473825, -0.1554058145299], +[0.3923574788675, -0.1558520950271], +[0.3974207678834, -0.156307610744], +[0.4024789760697, -0.1567725263803], +[0.4075320681321, -0.1572470111582], +[0.4125800120488, -0.1577312389014], +[0.4176227792862, -0.1582253881108], +[0.4226603450241, -0.1587296420361], +[0.427692688391, -0.1592441887414], +[0.432719792709, -0.159769221166], +[0.4377416457479, -0.1603049371765], +[0.44275823999, -0.1608515396131], +[0.4477695729031, -0.1614092363247], +[0.4527756472235, -0.1619782401956], +[0.4577764712475, -0.1625587691598], +[0.4627720591314, -0.1631510462026], +[0.4677624311986, -0.1637552993488], +[0.4727476142545, -0.1643717616345], +[0.4777276419069, -0.1650006710627], +[0.4827025548912, -0.1656422705398], +[0.4876724013997, -0.166296807792], +[0.4926372374132, -0.1669645352599], +[0.4975971270326, -0.1676457099701], +[0.5025521428097, -0.1683405933805], +[0.5075023660747, -0.1690494512002], +[0.5124478872574, -0.1697725531802], +[0.5173888062008, -0.1705101728746], +[0.5223252324629, -0.1712625873702], +[-0.5197825322292, -0.166858501377], +[-0.5148347994666, -0.1661087687518], +[-0.5098828125312, -0.1653736496573], +[-0.5049264663435, -0.1646528758463], +[-0.4999656650196, -0.1639461824417], +[-0.4950003215899, -0.1632533081896], +[-0.4900303577082, -0.1625739956824], +[-0.4850557033528, -0.1619079915549], +[-0.4800762965216, -0.1612550466549], +[-0.4750920829249, -0.1606149161887], +[-0.470103015676, -0.1599873598429], +[-0.4651090549823, -0.1593721418861], +[-0.4601101678379, -0.1587690312486], +[-0.4551063277203, -0.1581778015844], +[-0.4500975142904, -0.1575982313161], +[-0.4450837130982, -0.1570301036632], +[-0.4400649152948, -0.1564732066566], +[-0.435041117351, -0.1559273331394], +[-0.4300123207836, -0.1553922807561], +[-0.4249785318898, -0.154867851931], +[-0.4199397614889, -0.1543538538367], +[-0.4148960246742, -0.1538500983548], +[-0.4098473405721, -0.153356402028], +[-0.4047937321112, -0.1528725860061], +[-0.3997352257994, -0.1523984759865], +[-0.3946718515108, -0.1519339021489], +[-0.3896036422809, -0.1514786990865], +[-0.3845306341105, -0.1510327057331], +[-0.3794528657787, -0.1505957652875], +[-0.3743703786642, -0.1501677251351], +[-0.3692832165745, -0.1497484367681], +[-0.3641914255837, -0.1493377557039], +[-0.359095053878, -0.1489355414025], +[-0.3539941516086, -0.1485416571835], +[-0.3488887707525, -0.1481559701422], +[-0.3437789649798, -0.1477783510665], +[-0.3386647895285, -0.1474086743535], +[-0.3335463010856, -0.1470468179268], +[-0.3284235576745, -0.1466926631542], +[-0.3232966185489, -0.146346094767], +[-0.3181655440924, -0.1460070007797], +[-0.3130303957235, -0.1456752724111], +[-0.3078912358064, -0.1453508040069], +[-0.3027481275668, -0.1450334929633], +[-0.2976011350124, -0.1447232396531], +[-0.292450322859, -0.1444199473517], +[-0.2872957564595, -0.1441235221667], +[-0.282137501739, -0.1438338729678], +[-0.2769756251329, -0.1435509113188], +[-0.271810193529, -0.1432745514116], +[-0.2666412742135, -0.143004710002], +[-0.2614689348207, -0.1427413063467], +[-0.2562932432861, -0.142484262143], +[-0.2511142678017, -0.1422335014696], +[-0.2459320767762, -0.1419889507291], +[-0.2407467387961, -0.1417505385932], +[-0.2355583225912, -0.1415181959486], +[-0.2303668970016, -0.1412918558453], +[-0.2251725309479, -0.1410714534464], +[-0.2199752934032, -0.1408569259794], +[-0.2147752533678, -0.1406482126898], +[-0.2095724798457, -0.1404452547956], +[-0.2043670418234, -0.140247995444], +[-0.1991590082506, -0.1400563796693], +[-0.1939484480221, -0.1398703543524], +[-0.1887354299625, -0.1396898681822], +[-0.1835200228117, -0.1395148716182], +[-0.178302295212, -0.1393453168542], +[-0.1730823156975, -0.1391811577841], +[-0.1678601526836, -0.1390223499689], +[-0.1626358744589, -0.1388688506046], +[-0.1574095491778, -0.1387206184921], +[-0.1521812448544, -0.1385776140078], +[-0.146951029358, -0.1384397990758], +[-0.1417189704083, -0.1383071371416], +[-0.1364851355735, -0.138179593146], +[-0.1312495922677, -0.1380571335013], +[-0.1260124077499, -0.1379397260683], +[-0.1207736491244, -0.1378273401338], +[-0.1155333833405, -0.13771994639], +[-0.1102916771945, -0.1376175169147], +[-0.1050485973315, -0.137520025152], +[-0.09980421024812, -0.1374274458953], +[-0.09455858229569, -0.1373397552696], +[-0.08931177968443, -0.1372569307162], +[-0.08406386848768, -0.1371789509775], +[-0.07881491464703, -0.1371057960833], +[-0.0735649839775, -0.1370374473374], +[-0.06831414217364, -0.1369738873053], +[-0.06306245481572, -0.1369150998033], +[-0.05780998737637, -0.1368610698877], +[-0.05255680522756, -0.1368117838453], +[-0.04730297364798, -0.1367672291843], +[-0.04204855783054, -0.1367273946265], +[-0.03679362289032, -0.1366922701003], +[-0.03153823387256, -0.1366618467338], +[-0.02628245576101, -0.1366361168493], +[-0.02102635348639, -0.1366150739586], +[-0.01576999193494, -0.1365987127589], +[-0.01051343595724, -0.136587029129], +[-0.00525675037701, -0.1365800201272], +[-3.267470517259e-14, -0.1365776839893], +[0.00525675037701, -0.1365800201272], +[0.01051343595724, -0.136587029129], +[0.01576999193494, -0.1365987127589], +[0.02102635348638, -0.1366150739586], +[0.02628245576101, -0.1366361168493], +[0.03153823387256, -0.1366618467338], +[0.03679362289032, -0.1366922701003], +[0.04204855783054, -0.1367273946265], +[0.04730297364798, -0.1367672291843], +[0.05255680522756, -0.1368117838453], +[0.05780998737637, -0.1368610698877], +[0.06306245481572, -0.1369150998033], +[0.06831414217364, -0.1369738873053], +[0.0735649839775, -0.1370374473374], +[0.07881491464703, -0.1371057960833], +[0.0840638684877, -0.1371789509776], +[0.08931177968443, -0.1372569307162], +[0.09455858229569, -0.1373397552696], +[0.09980421024812, -0.1374274458953], +[0.1050485973315, -0.137520025152], +[0.1102916771945, -0.1376175169147], +[0.1155333833405, -0.13771994639], +[0.1207736491244, -0.1378273401338], +[0.1260124077499, -0.1379397260683], +[0.1312495922677, -0.1380571335013], +[0.1364851355735, -0.138179593146], +[0.1417189704083, -0.1383071371416], +[0.146951029358, -0.1384397990758], +[0.1521812448544, -0.1385776140078], +[0.1574095491778, -0.1387206184921], +[0.1626358744589, -0.1388688506046], +[0.1678601526836, -0.1390223499689], +[0.1730823156975, -0.1391811577841], +[0.178302295212, -0.1393453168542], +[0.1835200228117, -0.1395148716182], +[0.1887354299625, -0.1396898681822], +[0.1939484480221, -0.1398703543524], +[0.1991590082506, -0.1400563796693], +[0.2043670418234, -0.140247995444], +[0.2095724798457, -0.1404452547956], +[0.2147752533678, -0.1406482126898], +[0.2199752934032, -0.1408569259794], +[0.2251725309479, -0.1410714534464], +[0.2303668970016, -0.1412918558453], +[0.2355583225912, -0.1415181959486], +[0.2407467387961, -0.1417505385932], +[0.2459320767762, -0.1419889507291], +[0.2511142678017, -0.1422335014696], +[0.2562932432861, -0.142484262143], +[0.2614689348207, -0.1427413063467], +[0.2666412742135, -0.143004710002], +[0.271810193529, -0.1432745514116], +[0.2769756251329, -0.1435509113188], +[0.282137501739, -0.1438338729678], +[0.2872957564595, -0.1441235221667], +[0.292450322859, -0.1444199473517], +[0.2976011350124, -0.1447232396531], +[0.3027481275668, -0.1450334929633], +[0.3078912358064, -0.1453508040069], +[0.3130303957235, -0.1456752724111], +[0.3181655440924, -0.1460070007797], +[0.3232966185489, -0.146346094767], +[0.3284235576745, -0.1466926631542], +[0.3335463010856, -0.1470468179268], +[0.3386647895285, -0.1474086743535], +[0.3437789649798, -0.1477783510665], +[0.3488887707525, -0.1481559701422], +[0.3539941516086, -0.1485416571835], +[0.359095053878, -0.1489355414025], +[0.3641914255837, -0.1493377557039], +[0.3692832165745, -0.1497484367681], +[0.3743703786642, -0.1501677251351], +[0.3794528657787, -0.1505957652875], +[0.3845306341105, -0.1510327057331], +[0.3896036422809, -0.1514786990865], +[0.3946718515108, -0.1519339021489], +[0.3997352257994, -0.1523984759865], +[0.4047937321112, -0.1528725860061], +[0.4098473405721, -0.153356402028], +[0.4148960246742, -0.1538500983548], +[0.4199397614889, -0.1543538538367], +[0.4249785318898, -0.154867851931], +[0.4300123207836, -0.1553922807561], +[0.435041117351, -0.1559273331394], +[0.4400649152948, -0.1564732066566], +[0.4450837130982, -0.1570301036632], +[0.4500975142904, -0.1575982313161], +[0.4551063277203, -0.1581778015844], +[0.4601101678379, -0.1587690312486], +[0.4651090549823, -0.1593721418861], +[0.470103015676, -0.1599873598429], +[0.4750920829249, -0.1606149161887], +[0.4800762965216, -0.1612550466549], +[0.4850557033528, -0.1619079915549], +[0.4900303577082, -0.1625739956824], +[0.4950003215899, -0.1632533081896], +[0.4999656650196, -0.1639461824417], +[0.5049264663435, -0.1646528758463], +[0.5098828125312, -0.1653736496573], +[0.5148347994666, -0.1661087687518], +[0.5197825322292, -0.166858501377], +[-0.5172315452403, -0.1624400623028], +[-0.5122728735738, -0.1616931446345], +[-0.5073101812123, -0.1609606646187], +[-0.5023433673157, -0.1602423624292], +[-0.4973723397516, -0.1595379814581], +[-0.4923970148344, -0.1588472685511], +[-0.4874173170541, -0.1581699742179], +[-0.4824331787977, -0.1575058528158], +[-0.477444540066, -0.1568546627104], +[-0.4724513481868, -0.1562161664135], +[-0.4674535575264, -0.1555901306986], +[-0.4624511292016, -0.1549763266983], +[-0.4574440307928, -0.1543745299808], +[-0.4524322360599, -0.1537845206108], +[-0.447415724662, -0.1532060831934], +[-0.4423944818818, -0.1526390069036], +[-0.4373684983551, -0.1520830855019], +[-0.4323377698074, -0.1515381173381], +[-0.427302296796, -0.1510039053434], +[-0.4222620844601, -0.1504802570128], +[-0.4172171422783, -0.1499669843779], +[-0.4121674838336, -0.1494639039722], +[-0.4071131265867, -0.1489708367885], +[-0.4020540916572, -0.1484876082308], +[-0.3969904036133, -0.1480140480597], +[-0.3919220902689, -0.1475499903338], +[-0.3868491824902, -0.1470952733462], +[-0.3817717140089, -0.1466497395581], +[-0.3766897212446, -0.1462132355292], +[-0.3716032431344, -0.1457856118455], +[-0.3665123209704, -0.1453667230454], +[-0.3614169982447, -0.1449564275446], +[-0.3563173205016, -0.144554587559], +[-0.3512133351974, -0.1441610690275], +[-0.3461050915665, -0.1437757415347], +[-0.3409926404945, -0.1433984782327], +[-0.335876034398, -0.1430291557632], +[-0.3307553271103, -0.1426676541808], +[-0.325630573773, -0.1423138568753], +[-0.3205018307337, -0.1419676504969], +[-0.3153691554498, -0.1416289248796], +[-0.3102326063962, -0.1412975729682], +[-0.3050922429794, -0.1409734907452], +[-0.2999481254558, -0.1406565771588], +[-0.2948003148555, -0.1403467340532], +[-0.2896488729094, -0.1400438660991], +[-0.2844938619818, -0.1397478807269], +[-0.2793353450062, -0.1394586880609], +[-0.2741733854257, -0.1391762008546], +[-0.2690080471367, -0.1389003344287], +[-0.2638393944362, -0.13863100661], +[-0.2586674919728, -0.1383681376718], +[-0.2534924047006, -0.1381116502769], +[-0.2483141978364, -0.137861469421], +[-0.2431329368199, -0.1376175223791], +[-0.2379486872762, -0.1373797386523], +[-0.2327615149819, -0.1371480499171], +[-0.2275714858324, -0.1369223899763], +[-0.2223786658134, -0.1367026947109], +[-0.2171831209725, -0.1364889020342], +[-0.2119849173951, -0.1362809518471], +[-0.206784121181, -0.1360787859956], +[-0.2015807984233, -0.1358823482286], +[-0.1963750151895, -0.1356915841586], +[-0.191166837504, -0.135506441223], +[-0.1859563313323, -0.1353268686467], +[-0.1807435625671, -0.1351528174073], +[-0.1755285970154, -0.1349842401998], +[-0.1703115003879, -0.1348210914048], +[-0.1650923382886, -0.134663327056], +[-0.1598711762068, -0.1345109048106], +[-0.1546480795093, -0.1343637839198], +[-0.1494231134351, -0.1342219252015], +[-0.1441963430893, -0.1340852910132], +[-0.1389678334404, -0.1339538452272], +[-0.1337376493163, -0.1338275532058], +[-0.1285058554025, -0.1337063817786], +[-0.1232725162412, -0.1335902992203], +[-0.1180376962309, -0.1334792752296], +[-0.1128014596263, -0.1333732809096], +[-0.1075638705403, -0.1332722887487], +[-0.1023249929451, -0.1331762726027], +[-0.09708489067516, -0.1330852076781], +[-0.09184362743026, -0.1329990705157], +[-0.086601266779, -0.132917838976], +[-0.08135787216317, -0.1328414922247], +[-0.07611350690246, -0.1327700107199], +[-0.07086823419959, -0.1327033761991], +[-0.065622117146, -0.1326415716682], +[-0.06037521872779, -0.1325845813908], +[-0.05512760183214, -0.132532390878], +[-0.049879329254, -0.1324849868796], +[-0.04463046370314, -0.132442357376], +[-0.03938106781141, -0.1324044915704], +[-0.03413120414032, -0.1323713798824], +[-0.02888093518878, -0.1323430139418], +[-0.02363032340105, -0.132319386584], +[-0.01837943117491, -0.1323004918448], +[-0.01312832086988, -0.1322863249576], +[-0.007877054815619, -0.1322768823498], +[-0.002625695320392, -0.1322721616408], +[0.002625695320392, -0.1322721616408], +[0.007877054815619, -0.1322768823498], +[0.01312832086988, -0.1322863249576], +[0.01837943117491, -0.1323004918448], +[0.02363032340105, -0.132319386584], +[0.02888093518878, -0.1323430139418], +[0.03413120414032, -0.1323713798824], +[0.03938106781141, -0.1324044915704], +[0.04463046370314, -0.132442357376], +[0.049879329254, -0.1324849868796], +[0.05512760183214, -0.132532390878], +[0.06037521872779, -0.1325845813908], +[0.065622117146, -0.1326415716682], +[0.07086823419959, -0.1327033761991], +[0.07611350690246, -0.1327700107199], +[0.08135787216317, -0.1328414922247], +[0.086601266779, -0.132917838976], +[0.09184362743026, -0.1329990705157], +[0.09708489067516, -0.1330852076781], +[0.1023249929451, -0.1331762726027], +[0.1075638705403, -0.1332722887487], +[0.1128014596263, -0.1333732809096], +[0.1180376962309, -0.1334792752296], +[0.1232725162412, -0.1335902992203], +[0.1285058554025, -0.1337063817786], +[0.1337376493163, -0.1338275532058], +[0.1389678334404, -0.1339538452272], +[0.1441963430893, -0.1340852910132], +[0.149423113435, -0.1342219252015], +[0.1546480795093, -0.1343637839198], +[0.1598711762068, -0.1345109048106], +[0.1650923382886, -0.134663327056], +[0.1703115003879, -0.1348210914048], +[0.1755285970154, -0.1349842401998], +[0.1807435625671, -0.1351528174073], +[0.1859563313323, -0.1353268686467], +[0.191166837504, -0.135506441223], +[0.1963750151895, -0.1356915841586], +[0.2015807984233, -0.1358823482286], +[0.206784121181, -0.1360787859956], +[0.2119849173951, -0.1362809518471], +[0.2171831209725, -0.1364889020342], +[0.2223786658134, -0.1367026947109], +[0.2275714858324, -0.1369223899763], +[0.2327615149819, -0.1371480499171], +[0.2379486872762, -0.1373797386523], +[0.2431329368199, -0.1376175223791], +[0.2483141978364, -0.137861469421], +[0.2534924047006, -0.1381116502769], +[0.2586674919728, -0.1383681376718], +[0.2638393944362, -0.13863100661], +[0.2690080471367, -0.1389003344287], +[0.2741733854257, -0.1391762008546], +[0.2793353450062, -0.1394586880609], +[0.2844938619818, -0.1397478807269], +[0.2896488729094, -0.1400438660991], +[0.2948003148555, -0.1403467340532], +[0.2999481254558, -0.1406565771588], +[0.3050922429794, -0.1409734907452], +[0.3102326063962, -0.1412975729682], +[0.3153691554498, -0.1416289248796], +[0.3205018307337, -0.1419676504969], +[0.3256305737729, -0.1423138568754], +[0.3307553271103, -0.1426676541808], +[0.335876034398, -0.1430291557632], +[0.3409926404945, -0.1433984782327], +[0.3461050915665, -0.1437757415347], +[0.3512133351974, -0.1441610690275], +[0.3563173205016, -0.144554587559], +[0.3614169982447, -0.1449564275446], +[0.3665123209704, -0.1453667230454], +[0.3716032431344, -0.1457856118455], +[0.3766897212446, -0.1462132355292], +[0.3817717140089, -0.1466497395581], +[0.3868491824902, -0.1470952733462], +[0.3919220902689, -0.1475499903338], +[0.3969904036133, -0.1480140480597], +[0.4020540916572, -0.1484876082308], +[0.4071131265867, -0.1489708367885], +[0.4121674838336, -0.1494639039722], +[0.4172171422783, -0.1499669843779], +[0.4222620844601, -0.1504802570128], +[0.427302296796, -0.1510039053434], +[0.4323377698074, -0.1515381173381], +[0.4373684983551, -0.1520830855019], +[0.4423944818818, -0.1526390069036], +[0.447415724662, -0.1532060831934], +[0.4524322360599, -0.1537845206108], +[0.4574440307928, -0.1543745299808], +[0.4624511292016, -0.1549763266983], +[0.4674535575264, -0.1555901306986], +[0.4724513481868, -0.1562161664135], +[0.477444540066, -0.1568546627104], +[0.4824331787977, -0.1575058528158], +[0.4874173170541, -0.1581699742179], +[0.4923970148344, -0.1588472685511], +[0.4973723397516, -0.159537981458], +[0.5023433673157, -0.1602423624292], +[0.5073101812123, -0.1609606646187], +[0.5122728735738, -0.1616931446345], +[0.5172315452403, -0.1624400623028], +[-0.5146724466859, -0.1580075735849], +[-0.5097031943839, -0.1572636013773], +[-0.5047301500833, -0.1565338960465], +[-0.4997532169565, -0.155818205796], +[-0.494772306426, -0.1551162819043], +[-0.4897873379212, -0.1544278789455], +[-0.4847982386255, -0.1537527549863], +[-0.4798049432171, -0.1530906717584], +[-0.4748073936047, -0.1524413948107], +[-0.4698055386597, -0.151804693639], +[-0.4647993339474, -0.1511803417966], +[-0.4597887414578, -0.1505681169867], +[-0.4547737293371, -0.1499678011367], +[-0.4497542716224, -0.1493791804569], +[-0.4447303479788, -0.1488020454841], +[-0.4397019434412, -0.1482361911117], +[-0.4346690481607, -0.1476814166065], +[-0.4296316571566, -0.1471375256144], +[-0.4245897700744, -0.1466043261558], +[-0.4195433909504, -0.1460816306111], +[-0.4144925279831, -0.1455692556976], +[-0.4094371933115, -0.1450670224386], +[-0.4043774028009, -0.1445747561265], +[-0.3993131758363, -0.1440922862786], +[-0.3942445351227, -0.1436194465885], +[-0.3891715064936, -0.1431560748722], +[-0.3840941187264, -0.1427020130109], +[-0.3790124033663, -0.1422571068895], +[-0.373926394556, -0.141821206333], +[-0.3688361288747, -0.1413941650401], +[-0.363741645182, -0.1409758405146], +[-0.3586429844709, -0.1405660939961], +[-0.3535401897265, -0.1401647903885], +[-0.3484333057911, -0.1397717981884], +[-0.3433223792371, -0.1393869894131], +[-0.3382074582448, -0.1390102395275], +[-0.3330885924868, -0.1386414273719], +[-0.3279658330187, -0.1382804350896], +[-0.3228392321749, -0.1379271480552], +[-0.3177088434699, -0.1375814548034], +[-0.3125747215053, -0.1372432469582], +[-0.3074369218814, -0.1369124191638], +[-0.3022955011142, -0.1365888690158], +[-0.2971505165562, -0.136272496994], +[-0.2920020263224, -0.1359632063961], +[-0.2868500892207, -0.1356609032729], +[-0.2816947646853, -0.135365496365], +[-0.2765361127158, -0.1350768970402], +[-0.2713741938184, -0.1347950192333], +[-0.2662090689512, -0.134519779387], +[-0.2610407994736, -0.1342510963938], +[-0.255869447098, -0.1339888915406], +[-0.2506950738451, -0.1337330884534], +[-0.2455177420024, -0.1334836130449], +[-0.2403375140848, -0.1332403934625], +[-0.2351544527986, -0.1330033600391], +[-0.2299686210078, -0.132772445244], +[-0.2247800817027, -0.1325475836367], +[-0.2195888979711, -0.132328711821], +[-0.2143951329718, -0.1321157684017], +[-0.2091988499097, -0.1319086939422], +[-0.2040001120133, -0.1317074309232], +[-0.1987989825141, -0.1315119237038], +[-0.193595524628, -0.1313221184832], +[-0.1883898015376, -0.1311379632643], +[-0.1831818763772, -0.1309594078181], +[-0.1779718122189, -0.1307864036503], +[-0.1727596720596, -0.1306189039681], +[-0.1675455188107, -0.1304568636495], +[-0.162329415288, -0.1303002392128], +[-0.1571114242031, -0.1301489887878], +[-0.1518916081566, -0.1300030720888], +[-0.1466700296317, -0.1298624503871], +[-0.141446750989, -0.1297270864866], +[-0.136221834463, -0.1295969446995], +[-0.1309953421587, -0.1294719908228], +[-0.1257673360493, -0.1293521921165], +[-0.1205378779755, -0.1292375172832], +[-0.1153070296444, -0.1291279364472], +[-0.1100748526301, -0.1290234211365], +[-0.1048414083748, -0.1289239442642], +[-0.09960675819042, -0.1288294801119], +[-0.09437096326075, -0.1287400043135], +[-0.08913408464466, -0.1286554938402], +[-0.08389618327948, -0.128575926986], +[-0.078657319985, -0.1285012833546], +[-0.073417555468, -0.1284315438468], +[-0.06817695032723, -0.1283666906488], +[-0.06293556505875, -0.1283067072214], +[-0.05769346006173, -0.1282515782899], +[-0.05245069564453, -0.1282012898352], +[-0.04720733203121, -0.1281558290849], +[-0.04196342936824, -0.1281151845058], +[-0.03671904773149, -0.1280793457973], +[-0.03147424713352, -0.1280483038849], +[-0.02622908753105, -0.1280220509147], +[-0.02098362883252, -0.1280005802492], +[-0.01573793090602, -0.127983886463], +[-0.01049205358708, -0.1279719653396], +[-0.005246056686824, -0.1279648138691], +[7.961672800339e-16, -0.1279624302461], +[0.005246056686824, -0.1279648138691], +[0.01049205358708, -0.1279719653396], +[0.01573793090602, -0.127983886463], +[0.02098362883252, -0.1280005802492], +[0.02622908753105, -0.1280220509147], +[0.03147424713352, -0.1280483038849], +[0.03671904773149, -0.1280793457973], +[0.04196342936824, -0.1281151845058], +[0.04720733203121, -0.1281558290849], +[0.05245069564453, -0.1282012898352], +[0.05769346006173, -0.1282515782899], +[0.06293556505875, -0.1283067072214], +[0.06817695032723, -0.1283666906488], +[0.073417555468, -0.1284315438468], +[0.078657319985, -0.1285012833546], +[0.08389618327948, -0.128575926986], +[0.08913408464466, -0.1286554938402], +[0.09437096326075, -0.1287400043135], +[0.09960675819042, -0.1288294801119], +[0.1048414083748, -0.1289239442642], +[0.1100748526301, -0.1290234211365], +[0.1153070296444, -0.1291279364472], +[0.1205378779755, -0.1292375172832], +[0.1257673360493, -0.1293521921165], +[0.1309953421587, -0.1294719908228], +[0.136221834463, -0.1295969446995], +[0.141446750989, -0.1297270864866], +[0.1466700296317, -0.1298624503871], +[0.1518916081567, -0.1300030720888], +[0.1571114242031, -0.1301489887878], +[0.162329415288, -0.1303002392128], +[0.1675455188107, -0.1304568636495], +[0.1727596720596, -0.1306189039681], +[0.1779718122189, -0.1307864036503], +[0.1831818763772, -0.1309594078181], +[0.1883898015376, -0.1311379632643], +[0.193595524628, -0.1313221184832], +[0.1987989825141, -0.1315119237038], +[0.2040001120133, -0.1317074309232], +[0.2091988499097, -0.1319086939422], +[0.2143951329718, -0.1321157684017], +[0.2195888979711, -0.132328711821], +[0.2247800817027, -0.1325475836367], +[0.2299686210078, -0.132772445244], +[0.2351544527986, -0.1330033600391], +[0.2403375140848, -0.1332403934625], +[0.2455177420024, -0.1334836130449], +[0.2506950738451, -0.1337330884534], +[0.255869447098, -0.1339888915406], +[0.2610407994736, -0.1342510963938], +[0.2662090689512, -0.134519779387], +[0.2713741938184, -0.1347950192333], +[0.2765361127158, -0.1350768970402], +[0.2816947646853, -0.135365496365], +[0.2868500892207, -0.1356609032729], +[0.2920020263224, -0.1359632063961], +[0.2971505165562, -0.136272496994], +[0.3022955011142, -0.1365888690158], +[0.3074369218814, -0.1369124191638], +[0.3125747215053, -0.1372432469582], +[0.3177088434699, -0.1375814548034], +[0.3228392321749, -0.1379271480552], +[0.3279658330187, -0.1382804350896], +[0.3330885924868, -0.1386414273719], +[0.3382074582448, -0.1390102395275], +[0.3433223792371, -0.1393869894131], +[0.3484333057911, -0.1397717981884], +[0.3535401897265, -0.1401647903885], +[0.3586429844709, -0.1405660939961], +[0.363741645182, -0.1409758405146], +[0.3688361288747, -0.1413941650401], +[0.373926394556, -0.141821206333], +[0.3790124033663, -0.1422571068895], +[0.3840941187264, -0.1427020130109], +[0.3891715064936, -0.1431560748722], +[0.3942445351227, -0.1436194465885], +[0.3993131758363, -0.1440922862786], +[0.4043774028009, -0.1445747561265], +[0.4094371933115, -0.1450670224386], +[0.4144925279831, -0.1455692556976], +[0.4195433909504, -0.1460816306111], +[0.4245897700744, -0.1466043261558], +[0.4296316571566, -0.1471375256144], +[0.4346690481607, -0.1476814166065], +[0.4397019434412, -0.1482361911117], +[0.4447303479788, -0.1488020454841], +[0.4497542716224, -0.1493791804569], +[0.4547737293371, -0.1499678011367], +[0.4597887414578, -0.1505681169867], +[0.4647993339474, -0.1511803417966], +[0.4698055386597, -0.151804693639], +[0.4748073936047, -0.1524413948107], +[0.4798049432171, -0.1530906717584], +[0.4847982386255, -0.1537527549863], +[0.4897873379212, -0.1544278789455], +[0.494772306426, -0.1551162819043], +[0.4997532169565, -0.155818205796], +[0.5047301500833, -0.1565338960465], +[0.5097031943839, -0.1572636013774], +[0.5146724466859, -0.1580075735849], +[-0.5121047582121, -0.1535611866271], +[-0.5071259241101, -0.1528204327914], +[-0.5021428727291, -0.1520936349849], +[-0.4971561604654, -0.1513806939772], +[-0.4921657021087, -0.150681368575], +[-0.4871714200416, -0.1499954207322], +[-0.4821732440037, -0.1493226157339], +[-0.4771711108498, -0.1486627223597], +[-0.4721649643028, -0.1480155130263], +[-0.4671547547042, -0.1473807639114], +[-0.4621404387627, -0.1467582550579], +[-0.4571219793022, -0.146147770463], +[-0.4520993450114, -0.1455490981491], +[-0.4470725101944, -0.1449620302213], +[-0.4420414545248, -0.1443863629102], +[-0.4370061628034, -0.143821896602], +[-0.4319666247202, -0.1432684358569], +[-0.4269228346208, -0.1427257894166], +[-0.4218747912794, -0.1421937702018], +[-0.4168224976764, -0.1416721953008], +[-0.4117659607835, -0.1411608859501], +[-0.4067051913538, -0.1406596675078], +[-0.4016402037198, -0.1401683694199], +[-0.3965710155977, -0.1396868251816], +[-0.3914976478988, -0.1392148722929], +[-0.386420124547, -0.1387523522103], +[-0.381338472305, -0.1382991102936], +[-0.3762527206052, -0.1378549957507], +[-0.3711629013896, -0.1374198615785], +[-0.3660690489549, -0.136993564502], +[-0.3609711998048, -0.136575964911], +[-0.3558693925093, -0.136166926796], +[-0.3507636675695, -0.1357663176817], +[-0.3456540672892, -0.1353740085612], +[-0.3405406356527, -0.1349898738278], +[-0.3354234182078, -0.1346137912084], +[-0.3303024619556, -0.1342456416951], +[-0.3251778152444, -0.1338853094781], +[-0.3200495276705, -0.1335326818783], +[-0.3149176499828, -0.1331876492808], +[-0.3097822339936, -0.1328501050689], +[-0.3046433324929, -0.1325199455584], +[-0.2995009991686, -0.132197069934], +[-0.2943552885302, -0.1318813801854], +[-0.2892062558374, -0.1315727810453], +[-0.2840539570318, -0.1312711799281], +[-0.2788984486739, -0.1309764868704], +[-0.2737397878828, -0.1306886144721], +[-0.2685780322798, -0.1304074778394], +[-0.2634132399355, -0.130132994529], +[-0.25824546932, -0.1298650844932], +[-0.2530747792565, -0.1296036700273], +[-0.2479012288777, -0.129348675718], +[-0.242724877585, -0.1291000283929], +[-0.2375457850107, -0.1288576570718], +[-0.2323640109826, -0.1286214929197], +[-0.2271796154909, -0.1283914692009], +[-0.2219926586581, -0.1281675212344], +[-0.2168032007102, -0.1279495863508], +[-0.2116113019513, -0.1277376038512], +[-0.2064170227387, -0.1275315149667], +[-0.2012204234615, -0.1273312628194], +[-0.1960215645199, -0.1271367923855], +[-0.190820506307, -0.1269480504587], +[-0.1856173091917, -0.1267649856156], +[-0.1804120335037, -0.1265875481822], +[-0.1752047395196, -0.1264156902015], +[-0.1699954874509, -0.1262493654029], +[-0.1647843374328, -0.1260885291721], +[-0.1595713495149, -0.1259331385226], +[-0.1543565836528, -0.1257831520682], +[-0.1491400997004, -0.125638529997], +[-0.1439219574046, -0.1254992340463], +[-0.1387022163999, -0.1253652274781], +[-0.1334809362042, -0.1252364750567], +[-0.1282581762161, -0.1251129430264], +[-0.1230339957124, -0.1249945990907], +[-0.1178084538469, -0.1248814123927], +[-0.1125816096497, -0.1247733534959], +[-0.1073535220277, -0.1246703943662], +[-0.1021242497652, -0.1245725083551], +[-0.09689385152547, -0.1244796701837], +[-0.0916623858532, -0.1243918559272], +[-0.08642991117704, -0.1243090430008], +[-0.08119648581301, -0.1242312101463], +[-0.07596216796832, -0.1241583374192], +[-0.07072701574571, -0.1240904061773], +[-0.06549108714815, -0.1240273990695], +[-0.06025444008406, -0.1239693000258], +[-0.05501713237281, -0.1239160942477], +[-0.04977922175061, -0.1238677681997], +[-0.04454076587673, -0.1238243096017], +[-0.03930182233995, -0.1237857074212], +[-0.03406244866533, -0.1237519518678], +[-0.02882270232118, -0.1237230343869], +[-0.02358264072621, -0.1236989476554], +[-0.01834232125687, -0.1236796855766], +[-0.01310180125487, -0.1236652432777], +[-0.007861138034714, -0.1236556171064], +[-0.002620388891479, -0.123650804629], +[0.00262038889148, -0.123650804629], +[0.007861138034714, -0.1236556171064], +[0.01310180125487, -0.1236652432777], +[0.01834232125688, -0.1236796855766], +[0.02358264072622, -0.1236989476554], +[0.02882270232118, -0.1237230343869], +[0.03406244866533, -0.1237519518678], +[0.03930182233995, -0.1237857074212], +[0.04454076587673, -0.1238243096017], +[0.04977922175061, -0.1238677681997], +[0.05501713237281, -0.1239160942477], +[0.06025444008406, -0.1239693000258], +[0.06549108714815, -0.1240273990695], +[0.07072701574571, -0.1240904061773], +[0.07596216796832, -0.1241583374192], +[0.08119648581301, -0.1242312101463], +[0.08642991117704, -0.1243090430008], +[0.0916623858532, -0.1243918559272], +[0.09689385152547, -0.1244796701837], +[0.1021242497652, -0.1245725083551], +[0.1073535220277, -0.1246703943662], +[0.1125816096497, -0.1247733534959], +[0.1178084538469, -0.1248814123927], +[0.1230339957124, -0.1249945990907], +[0.1282581762161, -0.1251129430264], +[0.1334809362042, -0.1252364750567], +[0.1387022163999, -0.1253652274781], +[0.1439219574046, -0.1254992340463], +[0.1491400997004, -0.125638529997], +[0.1543565836528, -0.1257831520682], +[0.159571349515, -0.1259331385225], +[0.1647843374328, -0.1260885291721], +[0.1699954874509, -0.1262493654029], +[0.1752047395196, -0.1264156902015], +[0.1804120335037, -0.1265875481822], +[0.1856173091917, -0.1267649856156], +[0.190820506307, -0.1269480504587], +[0.1960215645199, -0.1271367923855], +[0.2012204234615, -0.1273312628194], +[0.2064170227387, -0.1275315149667], +[0.2116113019513, -0.1277376038512], +[0.2168032007102, -0.1279495863508], +[0.2219926586581, -0.1281675212344], +[0.2271796154909, -0.1283914692009], +[0.2323640109826, -0.1286214929197], +[0.2375457850107, -0.1288576570718], +[0.242724877585, -0.1291000283929], +[0.2479012288777, -0.129348675718], +[0.2530747792565, -0.1296036700273], +[0.25824546932, -0.1298650844932], +[0.2634132399355, -0.130132994529], +[0.2685780322798, -0.1304074778394], +[0.2737397878828, -0.1306886144721], +[0.2788984486739, -0.1309764868704], +[0.2840539570318, -0.1312711799281], +[0.2892062558374, -0.1315727810453], +[0.2943552885302, -0.1318813801854], +[0.2995009991686, -0.132197069934], +[0.3046433324929, -0.1325199455584], +[0.3097822339936, -0.1328501050689], +[0.3149176499828, -0.1331876492808], +[0.3200495276705, -0.1335326818783], +[0.3251778152444, -0.1338853094781], +[0.3303024619556, -0.1342456416951], +[0.3354234182078, -0.1346137912084], +[0.3405406356527, -0.1349898738278], +[0.3456540672892, -0.1353740085612], +[0.3507636675695, -0.1357663176817], +[0.3558693925093, -0.136166926796], +[0.3609711998048, -0.136575964911], +[0.3660690489549, -0.136993564502], +[0.3711629013896, -0.1374198615785], +[0.3762527206052, -0.1378549957507], +[0.381338472305, -0.1382991102936], +[0.386420124547, -0.1387523522103], +[0.3914976478988, -0.1392148722929], +[0.3965710155978, -0.1396868251816], +[0.4016402037198, -0.1401683694198], +[0.4067051913538, -0.1406596675078], +[0.4117659607835, -0.1411608859501], +[0.4168224976764, -0.1416721953008], +[0.4218747912794, -0.1421937702018], +[0.4269228346208, -0.1427257894166], +[0.4319666247202, -0.1432684358569], +[0.4370061628034, -0.143821896602], +[0.4420414545248, -0.1443863629102], +[0.4470725101944, -0.1449620302213], +[0.4520993450114, -0.1455490981491], +[0.4571219793022, -0.146147770463], +[0.4621404387627, -0.1467582550579], +[0.4671547547042, -0.1473807639114], +[0.4721649643028, -0.1480155130263], +[0.4771711108498, -0.1486627223597], +[0.4821732440037, -0.1493226157339], +[0.4871714200416, -0.1499954207322], +[0.4921657021087, -0.150681368575], +[0.4971561604654, -0.1513806939772], +[0.5021428727291, -0.1520936349849], +[0.5071259241101, -0.1528204327914], +[0.5121047582104, -0.1535611866708], +[-0.5095299752866, -0.1491016000428], +[-0.5045412215028, -0.1483639260116], +[-0.4995484996929, -0.1476401658996], +[-0.4945523404034, -0.1469301085378], +[-0.4895526616125, -0.146233519925], +[-0.4845493885008, -0.1455501690672], +[-0.4795424532314, -0.1448798281501], +[-0.4745317947241, -0.1442222726933], +[-0.4695173584244, -0.143577281685], +[-0.4644990960703, -0.142944637699], +[-0.4594769654571, -0.1423241269945], +[-0.4544509302018, -0.1417155396004], +[-0.4494209595081, -0.1411186693845], +[-0.4443870279334, -0.1405333141086], +[-0.4393491151576, -0.139959275471], +[-0.4343072057556, -0.1393963591365], +[-0.429261288974, -0.138844374756], +[-0.4242113585113, -0.1383031359752], +[-0.4191574123037, -0.1377724604345], +[-0.4140994523165, -0.1372521697604], +[-0.40903748434, -0.1367420895492], +[-0.4039715177927, -0.1362420493437], +[-0.3989015655296, -0.1357518826037], +[-0.393827643657, -0.1352714266712], +[-0.3887497713537, -0.1348005227305], +[-0.383667970699, -0.1343390157644], +[-0.3785822665061, -0.1338867545057], +[-0.3734926861629, -0.1334435913867], +[-0.3683992594789, -0.1330093824851], +[-0.3633020185376, -0.1325839874676], +[-0.3582009975566, -0.1321672695321], +[-0.3530962327523, -0.1317590953479], +[-0.3479877622114, -0.1313593349946], +[-0.3428756257683, -0.1309678619003], +[-0.3377598648874, -0.1305845527793], +[-0.3326405225519, -0.1302092875688], +[-0.3275176431573, -0.1298419493664], +[-0.3223912724107, -0.1294824243667], +[-0.3172614572342, -0.1291306017984], +[-0.3121282456743, -0.1287863738625], +[-0.3069916868151, -0.1284496356698], +[-0.3018518306967, -0.12812028518], +[-0.2967087282375, -0.1277982231417], +[-0.2915624311612, -0.1274833530321], +[-0.2864129919271, -0.1271755809992], +[-0.281260463665, -0.1268748158038], +[-0.2761049001136, -0.1265809687638], +[-0.2709463555622, -0.1262939536983], +[-0.2657848847965, -0.1260136868739], +[-0.2606205430468, -0.1257400869524], +[-0.2554533859398, -0.1254730749386], +[-0.2502834694541, -0.125212574131], +[-0.2451108498767, -0.1249585100723], +[-0.2399355837647, -0.1247108105024], +[-0.2347577279073, -0.1244694053122], +[-0.2295773392921, -0.1242342264986], +[-0.2243944750726, -0.1240052081215], +[-0.2192091925386, -0.1237822862614], +[-0.2140215490888, -0.1235653989788], +[-0.208831602205, -0.1233544862746], +[-0.2036394094288, -0.1231494900523], +[-0.1984450283398, -0.122950354081], +[-0.193248516536, -0.1227570239599], +[-0.1880499316155, -0.1225694470839], +[-0.1828493311602, -0.122387572611], +[-0.1776467727205, -0.1222113514299], +[-0.1724423138022, -0.1220407361299], +[-0.1672360118546, -0.1218756809714], +[-0.1620279242592, -0.1217161418572], +[-0.1568181083207, -0.121562076306], +[-0.1516066212587, -0.1214134434261], +[-0.1463935202005, -0.1212702038904], +[-0.1411788621751, -0.1211323199125], +[-0.1359627041083, -0.1209997552244], +[-0.1307451028187, -0.1208724750541], +[-0.1255261150143, -0.1207504461052], +[-0.1203057972907, -0.1206336365368], +[-0.1150842061295, -0.1205220159451], +[-0.1098613978977, -0.1204155553451], +[-0.1046374288477, -0.1203142271538], +[-0.0994123551184, -0.1202180051739], +[-0.09418623273642, -0.1201268645792], +[-0.08895911761819, -0.1200407818994], +[-0.08373106557263, -0.1199597350072], +[-0.07850213230432, -0.1198837031056], +[-0.07327237341719, -0.1198126667156], +[-0.0680418444186, -0.1197466076657], +[-0.06281060072395, -0.1196855090813], +[-0.05757869766161, -0.1196293553751], +[-0.05234619047828, -0.1195781322387], +[-0.04711313434462, -0.1195318266343], +[-0.04187958436124, -0.1194904267873], +[-0.0366455955649, -0.1194539221803], +[-0.03141122293505, -0.1194223035466], +[-0.02617652140049, -0.1193955628655], +[-0.02094154584623, -0.1193736933577], +[-0.01570635112063, -0.1193566894816], +[-0.01047099204248, -0.1193445469302], +[-0.005235523408371, -0.1193372626287], +[-1.210174265652e-15, -0.1193348347331], +[0.005235523408371, -0.1193372626287], +[0.01047099204248, -0.1193445469302], +[0.01570635112063, -0.1193566894816], +[0.02094154584623, -0.1193736933577], +[0.02617652140049, -0.1193955628655], +[0.03141122293505, -0.1194223035466], +[0.03664559556491, -0.1194539221803], +[0.04187958436124, -0.1194904267873], +[0.04711313434462, -0.1195318266343], +[0.05234619047828, -0.1195781322387], +[0.05757869766161, -0.1196293553751], +[0.06281060072395, -0.1196855090813], +[0.0680418444186, -0.1197466076657], +[0.07327237341719, -0.1198126667156], +[0.07850213230432, -0.1198837031056], +[0.08373106557263, -0.1199597350072], +[0.08895911761819, -0.1200407818994], +[0.09418623273642, -0.1201268645792], +[0.0994123551184, -0.1202180051739], +[0.1046374288477, -0.1203142271538], +[0.1098613978976, -0.1204155553451], +[0.1150842061295, -0.1205220159451], +[0.1203057972907, -0.1206336365368], +[0.1255261150143, -0.1207504461052], +[0.1307451028187, -0.1208724750541], +[0.1359627041083, -0.1209997552244], +[0.1411788621751, -0.1211323199125], +[0.1463935202005, -0.1212702038904], +[0.1516066212587, -0.1214134434261], +[0.1568181083207, -0.121562076306], +[0.1620279242592, -0.1217161418572], +[0.1672360118546, -0.1218756809714], +[0.1724423138022, -0.1220407361299], +[0.1776467727205, -0.1222113514299], +[0.1828493311602, -0.122387572611], +[0.1880499316155, -0.1225694470839], +[0.193248516536, -0.1227570239599], +[0.1984450283398, -0.122950354081], +[0.2036394094288, -0.1231494900523], +[0.208831602205, -0.1233544862746], +[0.2140215490888, -0.1235653989788], +[0.2192091925386, -0.1237822862614], +[0.2243944750726, -0.1240052081215], +[0.2295773392921, -0.1242342264986], +[0.2347577279073, -0.1244694053122], +[0.2399355837647, -0.1247108105024], +[0.2451108498767, -0.1249585100723], +[0.2502834694541, -0.125212574131], +[0.2554533859398, -0.1254730749386], +[0.2606205430468, -0.1257400869524], +[0.2657848847965, -0.1260136868739], +[0.2709463555622, -0.1262939536983], +[0.2761049001136, -0.1265809687638], +[0.281260463665, -0.1268748158038], +[0.2864129919271, -0.1271755809992], +[0.2915624311612, -0.1274833530321], +[0.2967087282375, -0.1277982231417], +[0.3018518306967, -0.12812028518], +[0.3069916868151, -0.1284496356698], +[0.3121282456743, -0.1287863738625], +[0.3172614572342, -0.1291306017984], +[0.3223912724107, -0.1294824243667], +[0.3275176431573, -0.1298419493664], +[0.3326405225519, -0.1302092875688], +[0.3377598648874, -0.1305845527793], +[0.3428756257683, -0.1309678619003], +[0.3479877622114, -0.1313593349946], +[0.3530962327523, -0.1317590953479], +[0.3582009975566, -0.1321672695321], +[0.3633020185376, -0.1325839874676], +[0.3683992594789, -0.1330093824851], +[0.3734926861629, -0.1334435913867], +[0.3785822665061, -0.1338867545057], +[0.383667970699, -0.1343390157644], +[0.3887497713537, -0.1348005227305], +[0.393827643657, -0.1352714266712], +[0.3989015655296, -0.1357518826037], +[0.4039715177927, -0.1362420493437], +[0.4090374843401, -0.1367420895492], +[0.4140994523165, -0.1372521697604], +[0.4191574123037, -0.1377724604345], +[0.4242113585113, -0.1383031359752], +[0.429261288974, -0.138844374756], +[0.4343072057556, -0.1393963591365], +[0.4393491151576, -0.139959275471], +[0.4443870279334, -0.1405333141086], +[0.4494209595081, -0.1411186693845], +[0.4544509302018, -0.1417155396004], +[0.4594769654571, -0.1423241269945], +[0.4644990960703, -0.142944637699], +[0.4695173584244, -0.143577281685], +[0.4745317947241, -0.1442222726933], +[0.4795424532314, -0.1448798281501], +[0.4845493885008, -0.1455501690672], +[0.4895526616125, -0.146233519925], +[0.4945523404034, -0.1469301085378], +[0.4995484996929, -0.1476401658996], +[0.5045412215028, -0.1483639260116], +[0.50953059527, -0.1491016256878], +[-0.5069476482163, -0.1446283404431], +[-0.5019492420229, -0.1438943618411], +[-0.4969471786223, -0.1431737670145], +[-0.4919418968141, -0.1424667249048], +[-0.4869333175937, -0.1417730083871], +[-0.4819213687909, -0.141092393211], +[-0.4769059848646, -0.1404246581639], +[-0.4718871066909, -0.1397695852154], +[-0.4668646813476, -0.1391269596452], +[-0.461838661896, -0.1384965701539], +[-0.4568090071606, -0.1378782089579], +[-0.4517756815083, -0.1372716718704], +[-0.4467386546284, -0.1366767583673], +[-0.4416979013139, -0.1360932716417], +[-0.4366534012445, -0.1355210186443], +[-0.431605138773, -0.1349598101147], +[-0.4265531027148, -0.1344094606009], +[-0.4214972861419, -0.1338697884697], +[-0.4164376861804, -0.1333406159086], +[-0.4113743038142, -0.1328217689195], +[-0.4063071436923, -0.1323130773051], +[-0.4012362139427, -0.1318143746489], +[-0.3961615259914, -0.1313254982895], +[-0.3910830943868, -0.1308462892893], +[-0.3860009366309, -0.1303765923986], +[-0.3809150730151, -0.1299162560159], +[-0.3758255264632, -0.1294651321443], +[-0.3707323223794, -0.1290230763445], +[-0.3656354885028, -0.1285899476859], +[-0.3605350547672, -0.1281656086945], +[-0.3554310531671, -0.1277499252996], +[-0.3503235176293, -0.1273427667785], +[-0.3452124838899, -0.1269440057003], +[-0.3400979893768, -0.126553517868], +[-0.3349800730981, -0.1261711822613], +[-0.3298587755343, -0.1257968809773], +[-0.3247341385373, -0.1254304991723], +[-0.3196062052331, -0.1250719250028], +[-0.3144750199296, -0.1247210495669], +[-0.3093406280291, -0.1243777668459], +[-0.3042030759451, -0.1240419736468], +[-0.2990624110236, -0.1237135695443], +[-0.2939186814684, -0.123392456825], +[-0.2887719362704, -0.1230785404308], +[-0.2836222251407, -0.1227717279046], +[-0.2784695984476, -0.1224719293356], +[-0.2733141071571, -0.122179057307], +[-0.2681558027766, -0.1218930268434], +[-0.2629947373021, -0.1216137553604], +[-0.2578309631682, -0.1213411626148], +[-0.252664533202, -0.1210751706558], +[-0.2474955005787, -0.1208157037782], +[-0.2423239187807, -0.120562688476], +[-0.2371498415594, -0.1203160533976], +[-0.2319733228987, -0.1200757293024], +[-0.2267944169825, -0.1198416490183], +[-0.2216131781623, -0.1196137474005], +[-0.2164296609293, -0.1193919612921], +[-0.2112439198871, -0.1191762294852], +[-0.2060560097266, -0.1189664926838], +[-0.2008659852035, -0.1187626934674], +[-0.195673901117, -0.1185647762564], +[-0.1904798122905, -0.1183726872785], +[-0.1852837735538, -0.1181863745359], +[-0.1800858397269, -0.1180057877744], +[-0.1748860656059, -0.1178308784528], +[-0.169684505949, -0.1176615997144], +[-0.1644812154657, -0.1174979063586], +[-0.1592762488053, -0.1173397548147], +[-0.1540696605482, -0.1171871031156], +[-0.1488615051979, -0.1170399108736], +[-0.1436518371735, -0.1168981392564], +[-0.1384407108043, -0.1167617509649], +[-0.1332281803245, -0.1166307102113], +[-0.1280142998694, -0.1165049826987], +[-0.1227991234725, -0.1163845356011], +[-0.1175827050627, -0.116269337545], +[-0.1123650984636, -0.1161593585915], +[-0.1071463573924, -0.1160545702193], +[-0.10192653546, -0.1159549453087], +[-0.09670568617189, -0.1158604581263], +[-0.09148386292931, -0.1157710843108], +[-0.08626111903141, -0.1156868008597], +[-0.08103750767763, -0.1156075861159], +[-0.07581308197083, -0.1155334197566], +[-0.07058789492073, -0.1154642827817], +[-0.06536199944794, -0.1154001575034], +[-0.06013544838833, -0.1153410275368], +[-0.05490829449783, -0.1152868777909], +[-0.04968059045753, -0.1152376944607], +[-0.04445238887912, -0.1151934650193], +[-0.0392237423107, -0.1151541782116], +[-0.0339947032427, -0.115119824048], +[-0.02876532411418, -0.1150903937992], +[-0.02353565731925, -0.1150658799916], +[-0.01830575521368, -0.1150462764032], +[-0.01307567012168, -0.1150315780603], +[-0.007845454342793, -0.1150217812352], +[-0.002615160158874, -0.1150168834435], +[0.002615160158874, -0.1150168834435], +[0.007845454342793, -0.1150217812352], +[0.01307567012168, -0.1150315780603], +[0.01830575521368, -0.1150462764032], +[0.02353565731925, -0.1150658799916], +[0.02876532411418, -0.1150903937992], +[0.0339947032427, -0.115119824048], +[0.0392237423107, -0.1151541782116], +[0.04445238887912, -0.1151934650193], +[0.04968059045753, -0.1152376944607], +[0.05490829449783, -0.115286877791], +[0.06013544838833, -0.1153410275368], +[0.06536199944794, -0.1154001575034], +[0.07058789492073, -0.1154642827817], +[0.07581308197083, -0.1155334197566], +[0.08103750767763, -0.1156075861159], +[0.08626111903141, -0.1156868008597], +[0.09148386292931, -0.1157710843108], +[0.09670568617189, -0.1158604581263], +[0.10192653546, -0.1159549453087], +[0.1071463573924, -0.1160545702193], +[0.1123650984636, -0.1161593585915], +[0.1175827050627, -0.116269337545], +[0.1227991234725, -0.1163845356011], +[0.1280142998694, -0.1165049826987], +[0.1332281803245, -0.1166307102113], +[0.1384407108043, -0.1167617509649], +[0.1436518371735, -0.1168981392564], +[0.1488615051979, -0.1170399108736], +[0.1540696605482, -0.1171871031156], +[0.1592762488053, -0.1173397548147], +[0.1644812154657, -0.1174979063586], +[0.169684505949, -0.1176615997144], +[0.1748860656059, -0.1178308784528], +[0.1800858397269, -0.1180057877744], +[0.1852837735538, -0.1181863745359], +[0.1904798122905, -0.1183726872785], +[0.195673901117, -0.1185647762564], +[0.2008659852035, -0.1187626934674], +[0.2060560097266, -0.1189664926838], +[0.2112439198871, -0.1191762294852], +[0.2164296609293, -0.1193919612921], +[0.2216131781623, -0.1196137474005], +[0.2267944169825, -0.1198416490183], +[0.2319733228987, -0.1200757293024], +[0.2371498415594, -0.1203160533976], +[0.2423239187807, -0.120562688476], +[0.2474955005787, -0.1208157037782], +[0.252664533202, -0.1210751706558], +[0.2578309631682, -0.1213411626148], +[0.2629947373021, -0.1216137553604], +[0.2681558027766, -0.1218930268434], +[0.2733141071571, -0.122179057307], +[0.2784695984476, -0.1224719293356], +[0.2836222251407, -0.1227717279046], +[0.2887719362704, -0.1230785404308], +[0.2939186814684, -0.123392456825], +[0.2990624110236, -0.1237135695443], +[0.3042030759451, -0.1240419736468], +[0.3093406280291, -0.1243777668459], +[0.3144750199296, -0.1247210495669], +[0.3196062052331, -0.1250719250028], +[0.3247341385373, -0.1254304991723], +[0.3298587755343, -0.1257968809773], +[0.3349800730981, -0.1261711822613], +[0.3400979893768, -0.126553517868], +[0.3452124838899, -0.1269440057003], +[0.3503235176293, -0.1273427667785], +[0.3554310531671, -0.1277499252996], +[0.3605350547672, -0.1281656086945], +[0.3656354885028, -0.1285899476859], +[0.3707323223794, -0.1290230763445], +[0.3758255264632, -0.1294651321443], +[0.3809150730151, -0.1299162560159], +[0.3860009366309, -0.1303765923986], +[0.3910830943868, -0.1308462892893], +[0.3961615259914, -0.1313254982895], +[0.4012362139427, -0.1318143746489], +[0.4063071436923, -0.1323130773051], +[0.4113743038142, -0.1328217689195], +[0.4164376861804, -0.1333406159086], +[0.4214972861419, -0.1338697884697], +[0.4265531027148, -0.1344094606009], +[0.431605138773, -0.1349598101147], +[0.4366534012445, -0.1355210186443], +[0.4416979013139, -0.1360932716417], +[0.4467386546284, -0.1366767583673], +[0.4517756815083, -0.1372716718704], +[0.4568090071606, -0.1378782089579], +[0.461838661896, -0.1384965701539], +[0.4668646813476, -0.1391269596452], +[0.4718871066909, -0.1397695852154], +[0.4769059848646, -0.1404246581639], +[0.4819213687909, -0.141092393211], +[0.4869333175937, -0.1417730083871], +[0.4919418968141, -0.1424667249048], +[0.4969471786223, -0.1431737670145], +[0.5019492420229, -0.1438943618411], +[0.5069476482161, -0.1446283404714], +[-0.5043577299024, -0.1401426224486], +[-0.4993501380044, -0.1394120150721], +[-0.4943390544071, -0.1386947106261], +[-0.489324967337, -0.1379908126744], +[-0.4843078006433, -0.1373001006704], +[-0.4792874846622, -0.1366223568178], +[-0.4742639560242, -0.135957366223], +[-0.4692371574564, -0.1353049170325], +[-0.4642070375805, -0.1346648005533], +[-0.4591735507081, -0.1340368113577], +[-0.4541366566347, -0.1334207473748], +[-0.4490963204327, -0.1328164099668], +[-0.4440525122451, -0.1322236039934], +[-0.4390052070797, -0.1316421378638], +[-0.4339543846058, -0.1310718235772], +[-0.4289000289532, -0.1305124767533], +[-0.4238421285143, -0.1299639166528], +[-0.4187806757496, -0.1294259661888], +[-0.4137156669978, -0.1288984519303], +[-0.4086471022895, -0.1283812040985], +[-0.4035749851661, -0.1278740565553], +[-0.3984993225037, -0.1273768467865], +[-0.3934201243415, -0.1268894158793], +[-0.3883374037164, -0.1264116084941], +[-0.3832511765019, -0.1259432728328], +[-0.3781614612535, -0.1254842606029], +[-0.3730682790588, -0.1250344269771], +[-0.3679716533933, -0.1245936305518], +[-0.3628716099821, -0.1241617333007], +[-0.3577681766663, -0.1237386005286], +[-0.3526613832755, -0.123324100821], +[-0.3475512615049, -0.1229181059937], +[-0.3424378447983, -0.1225204910406], +[-0.3373211682358, -0.1221311340807], +[-0.3322012684264, -0.1217499163038], +[-0.3270781834058, -0.1213767219167], +[-0.3219519525392, -0.1210114380879], +[-0.3168226164274, -0.1206539548933], +[-0.3116902168195, -0.1203041652615], +[-0.3065547965277, -0.1199619649192], +[-0.3014163993485, -0.1196272523367], +[-0.2962750699857, -0.1192999286752], +[-0.2911308539795, -0.1189798977328], +[-0.285983797638, -0.1186670658925], +[-0.2808339479727, -0.118361342071], +[-0.2756813526377, -0.1180626376673], +[-0.2705260598723, -0.1177708665133], +[-0.2653681184465, -0.1174859448246], +[-0.2602075776102, -0.1172077911533], +[-0.2550444870447, -0.1169363263403], +[-0.2498788968177, -0.1166714734705], +[-0.2447108573411, -0.1164131578274], +[-0.2395404193305, -0.1161613068502], +[-0.2343676337686, -0.1159158500916], +[-0.2291925518701, -0.1156767191758], +[-0.2240152250491, -0.1154438477597], +[-0.2188357048888, -0.1152171714932], +[-0.2136540431136, -0.1149966279819], +[-0.2084702915628, -0.1147821567508], +[-0.2032845021664, -0.1145736992087], +[-0.1980967269227, -0.1143711986144], +[-0.192907017878, -0.1141746000433], +[-0.1877154271075, -0.113983850356], +[-0.1825220066982, -0.1137988981672], +[-0.1773268087329, -0.1136196938163], +[-0.1721298852763, -0.1134461893389], +[-0.166931288362, -0.1132783384392], +[-0.1617310699809, -0.1131160964637], +[-0.156529282071, -0.1129594203756], +[-0.1513259765082, -0.112808268731], +[-0.1461212050986, -0.1126626016552], +[-0.1409150195715, -0.1125223808202], +[-0.1357074715735, -0.1123875694238], +[-0.1304986126641, -0.1122581321689], +[-0.1252884943111, -0.1121340352438], +[-0.1200771678883, -0.1120152463042], +[-0.1148646846726, -0.1119017344548], +[-0.1096510958432, -0.111793470233], +[-0.1044364524805, -0.1116904255929], +[-0.09922080556624, -0.1115925738897], +[-0.09400420598441, -0.111499889866], +[-0.08878670452215, -0.1114123496378], +[-0.08356835187188, -0.1113299306824], +[-0.07834919863364, -0.1112526118256], +[-0.07312929531805, -0.1111803732315], +[-0.06790869234964, -0.1111131963912], +[-0.06268744007077, -0.1110510641137], +[-0.05746558874573, -0.1109939605168], +[-0.05224318856552, -0.1109418710187], +[-0.04702028965265, -0.1108947823306], +[-0.04179694206647, -0.1108526824497], +[-0.03657319580865, -0.110815560653], +[-0.03134910082905, -0.1107834074922], +[-0.02612470703162, -0.1107562147881], +[-0.0209000642807, -0.1107339756273], +[-0.01567522240729, -0.1107166843578], +[-0.01045023121561, -0.1107043365869], +[-0.005225140489675, -0.1106969291784], +[-2.315254450339e-14, -0.1106944602512], +[0.005225140489675, -0.1106969291784], +[0.01045023121561, -0.1107043365869], +[0.01567522240729, -0.1107166843578], +[0.0209000642807, -0.1107339756273], +[0.02612470703162, -0.1107562147881], +[0.03134910082905, -0.1107834074922], +[0.03657319580865, -0.110815560653], +[0.04179694206647, -0.1108526824497], +[0.04702028965265, -0.1108947823306], +[0.05224318856552, -0.1109418710187], +[0.05746558874573, -0.1109939605168], +[0.06268744007075, -0.1110510641137], +[0.06790869234964, -0.1111131963912], +[0.07312929531805, -0.1111803732315], +[0.07834919863364, -0.1112526118256], +[0.08356835187188, -0.1113299306824], +[0.08878670452215, -0.1114123496378], +[0.09400420598441, -0.111499889866], +[0.09922080556625, -0.1115925738897], +[0.1044364524805, -0.1116904255929], +[0.1096510958432, -0.111793470233], +[0.1148646846726, -0.1119017344548], +[0.1200771678883, -0.1120152463042], +[0.1252884943111, -0.1121340352438], +[0.1304986126641, -0.1122581321689], +[0.1357074715735, -0.1123875694238], +[0.1409150195715, -0.1125223808202], +[0.1461212050986, -0.1126626016552], +[0.1513259765082, -0.112808268731], +[0.156529282071, -0.1129594203756], +[0.1617310699809, -0.1131160964637], +[0.166931288362, -0.1132783384392], +[0.1721298852763, -0.1134461893389], +[0.1773268087329, -0.1136196938163], +[0.1825220066982, -0.1137988981672], +[0.1877154271075, -0.113983850356], +[0.192907017878, -0.1141746000433], +[0.1980967269227, -0.1143711986144], +[0.2032845021664, -0.1145736992087], +[0.2084702915628, -0.1147821567508], +[0.2136540431136, -0.1149966279819], +[0.2188357048888, -0.1152171714932], +[0.2240152250491, -0.1154438477597], +[0.2291925518701, -0.1156767191758], +[0.2343676337686, -0.1159158500916], +[0.2395404193305, -0.1161613068502], +[0.2447108573411, -0.1164131578274], +[0.2498788968177, -0.1166714734705], +[0.2550444870447, -0.1169363263403], +[0.2602075776102, -0.1172077911533], +[0.2653681184465, -0.1174859448246], +[0.2705260598723, -0.1177708665133], +[0.2756813526377, -0.1180626376673], +[0.2808339479727, -0.118361342071], +[0.285983797638, -0.1186670658925], +[0.2911308539795, -0.1189798977328], +[0.2962750699857, -0.1192999286752], +[0.3014163993485, -0.1196272523367], +[0.3065547965277, -0.1199619649192], +[0.3116902168195, -0.1203041652615], +[0.3168226164274, -0.1206539548933], +[0.3219519525392, -0.1210114380879], +[0.3270781834058, -0.1213767219167], +[0.3322012684264, -0.1217499163039], +[0.3373211682358, -0.1221311340807], +[0.3424378447983, -0.1225204910406], +[0.3475512615049, -0.1229181059937], +[0.3526613832755, -0.123324100821], +[0.3577681766663, -0.1237386005286], +[0.3628716099821, -0.1241617333007], +[0.3679716533933, -0.1245936305518], +[0.3730682790588, -0.1250344269771], +[0.3781614612535, -0.1254842606029], +[0.3832511765019, -0.1259432728328], +[0.3883374037164, -0.1264116084941], +[0.3934201243415, -0.1268894158793], +[0.3984993225037, -0.1273768467865], +[0.4035749851661, -0.1278740565553], +[0.4086471022895, -0.1283812040985], +[0.4137156669978, -0.1288984519303], +[0.4187806757496, -0.1294259661888], +[0.4238421285143, -0.1299639166528], +[0.4289000289532, -0.1305124767533], +[0.4339543846058, -0.1310718235772], +[0.4390052070797, -0.1316421378638], +[0.4440525122451, -0.1322236039934], +[0.4490963204327, -0.1328164099668], +[0.4541366566347, -0.1334207473748], +[0.4591735507081, -0.1340368113577], +[0.4642070375805, -0.1346648005533], +[0.4692371574564, -0.1353049170325], +[0.4742639560242, -0.135957366223], +[0.4792874846622, -0.1366223568178], +[0.4843078006433, -0.1373001006704], +[0.489324967337, -0.1379908126744], +[0.4943390544071, -0.1386947106261], +[0.4993501380044, -0.1394120150721], +[0.5043577299025, -0.1401426224794], +[-0.5017605375235, -0.1356443506623], +[-0.4967440588066, -0.1349171547872], +[-0.4917242693086, -0.1342032633987], +[-0.4867016873155, -0.133502635899], +[-0.4816762393743, -0.1328150580402], +[-0.4766478581899, -0.1321403182059], +[-0.4716164824452, -0.1314782075556], +[-0.4665820566152, -0.1308285201543], +[-0.4615445307783, -0.130191053086], +[-0.4565038604246, -0.1295656065544], +[-0.4514600062621, -0.1289519839686], +[-0.4464129340228, -0.1283499920173], +[-0.4413626142691, -0.1277594407305], +[-0.4363090222004, -0.1271801435295], +[-0.4312521374622, -0.1266119172672], +[-0.4261919439567, -0.126054582258], +[-0.4211284296567, -0.1255079622989], +[-0.4160615864223, -0.1249718846822], +[-0.4109914098218, -0.1244461802002], +[-0.405917898956, -0.1239306831433], +[-0.400841056287, -0.1234252312912], +[-0.3957608874718, -0.1229296658987], +[-0.3906774012001, -0.1224438316758], +[-0.385590609037, -0.1219675767631], +[-0.3805005252715, -0.1215007527034], +[-0.3754071667684, -0.1210432144089], +[-0.370310552827, -0.1205948201254], +[-0.3652107050439, -0.1201554313933], +[-0.3601076471808, -0.1197249130066], +[-0.3550014050383, -0.1193031329693], +[-0.3498920063333, -0.1188899624497], +[-0.3447794805828, -0.118485275734], +[-0.3396638589915, -0.1180889501776], +[-0.3345451743449, -0.1177008661564], +[-0.3294234609065, -0.1173209070163], +[-0.32429875432, -0.1169489590233], +[-0.3191710915159, -0.1165849113125], +[-0.3140405106224, -0.1162286558367], +[-0.3089070508803, -0.1158800873162], +[-0.3037707525628, -0.1155391031871], +[-0.2986316568981, -0.1152056035514], +[-0.2934898059969, -0.1148794911265], +[-0.2883452427833, -0.1145606711958], +[-0.283198010929, -0.1142490515594], +[-0.2780481547912, -0.1139445424859], +[-0.2728957193543, -0.1136470566647], +[-0.2677407501739, -0.1133565091594], +[-0.2625832933247, -0.1130728173615], +[-0.2574233953512, -0.1127959009461], +[-0.252261103221, -0.1125256818272], +[-0.2470964642812, -0.1122620841149], +[-0.2419295262171, -0.1120050340739], +[-0.2367603370141, -0.1117544600816], +[-0.231588944921, -0.1115102925893], +[-0.2264153984168, -0.1112724640826], +[-0.2212397461788, -0.1110409090442], +[-0.2160620370533, -0.1108155639168], +[-0.2108823200283, -0.1105963670682], +[-0.2057006442084, -0.1103832587565], +[-0.2005170587906, -0.1101761810968], +[-0.1953316130434, -0.109975078029], +[-0.1901443562864, -0.1097798952868], +[-0.1849553378719, -0.1095905803675], +[-0.1797646071682, -0.1094070825027], +[-0.1745722135445, -0.1092293526309], +[-0.1693782063566, -0.1090573433699], +[-0.1641826349348, -0.1088910089915], +[-0.1589855485724, -0.1087303053958], +[-0.1537869965157, -0.1085751900881], +[-0.1485870279553, -0.1084256221553], +[-0.1433856920181, -0.1082815622442], +[-0.1381830377612, -0.10814297254], +[-0.1329791141653, -0.1080098167466], +[-0.1277739701308, -0.1078820600671], +[-0.1225676544738, -0.1077596691855], +[-0.1173602159227, -0.1076426122489], +[-0.1121517031164, -0.1075308588511], +[-0.1069421646031, -0.1074243800168], +[-0.1017316488392, -0.1073231481861], +[-0.09652020418938, -0.107227137201], +[-0.09130787892747, -0.1071363222912], +[-0.08609472123754, -0.1070506800622], +[-0.08088077921569, -0.1069701884826], +[-0.07566610087245, -0.1068948268734], +[-0.07045073413554, -0.1068245758975], +[-0.06523472685317, -0.10675941755], +[-0.0600181267978, -0.1066993351489], +[-0.05480098167011, -0.1066443133271], +[-0.04958333910356, -0.1065943380244], +[-0.04436524666911, -0.106549396481], +[-0.0391467518803, -0.1065094772308], +[-0.0339279021986, -0.1064745700957], +[-0.02870874503899, -0.1064446661809], +[-0.02348932777571, -0.1064197578704], +[-0.01826969774828, -0.106399838823], +[-0.01304990226753, -0.1063849039697], +[-0.007829988621946, -0.1063749495109], +[-0.002610004083897, -0.1063699729143], +[0.002610004083897, -0.1063699729143], +[0.007829988621946, -0.1063749495109], +[0.01304990226753, -0.1063849039698], +[0.01826969774828, -0.106399838823], +[0.02348932777571, -0.1064197578704], +[0.02870874503899, -0.1064446661809], +[0.0339279021986, -0.1064745700957], +[0.0391467518803, -0.1065094772308], +[0.04436524666911, -0.106549396481], +[0.04958333910356, -0.1065943380244], +[0.05480098167011, -0.1066443133271], +[0.0600181267978, -0.1066993351489], +[0.06523472685317, -0.10675941755], +[0.07045073413552, -0.1068245758975], +[0.07566610087245, -0.1068948268734], +[0.08088077921569, -0.1069701884825], +[0.08609472123754, -0.1070506800622], +[0.09130787892747, -0.1071363222912], +[0.09652020418938, -0.107227137201], +[0.1017316488392, -0.1073231481861], +[0.1069421646031, -0.1074243800168], +[0.1121517031164, -0.1075308588511], +[0.1173602159227, -0.1076426122489], +[0.1225676544738, -0.1077596691855], +[0.1277739701308, -0.1078820600671], +[0.1329791141653, -0.1080098167466], +[0.1381830377612, -0.10814297254], +[0.1433856920181, -0.1082815622442], +[0.1485870279553, -0.1084256221553], +[0.1537869965157, -0.1085751900881], +[0.1589855485724, -0.1087303053958], +[0.1641826349348, -0.1088910089915], +[0.1693782063566, -0.1090573433699], +[0.1745722135445, -0.1092293526309], +[0.1797646071682, -0.1094070825027], +[0.1849553378719, -0.1095905803675], +[0.1901443562864, -0.1097798952868], +[0.1953316130434, -0.109975078029], +[0.2005170587906, -0.1101761810968], +[0.2057006442084, -0.1103832587565], +[0.2108823200283, -0.1105963670682], +[0.2160620370533, -0.1108155639168], +[0.2212397461788, -0.1110409090442], +[0.2264153984168, -0.1112724640826], +[0.231588944921, -0.1115102925893], +[0.2367603370141, -0.1117544600816], +[0.2419295262171, -0.1120050340739], +[0.2470964642812, -0.1122620841149], +[0.252261103221, -0.1125256818272], +[0.2574233953512, -0.1127959009461], +[0.2625832933247, -0.1130728173615], +[0.2677407501739, -0.1133565091594], +[0.2728957193543, -0.1136470566647], +[0.2780481547912, -0.1139445424859], +[0.283198010929, -0.1142490515594], +[0.2883452427833, -0.1145606711958], +[0.2934898059969, -0.1148794911265], +[0.2986316568981, -0.1152056035514], +[0.3037707525628, -0.1155391031871], +[0.3089070508803, -0.1158800873162], +[0.3140405106224, -0.1162286558367], +[0.3191710915159, -0.1165849113125], +[0.32429875432, -0.1169489590233], +[0.3294234609065, -0.1173209070163], +[0.3345451743449, -0.1177008661564], +[0.3396638589915, -0.1180889501776], +[0.3447794805828, -0.118485275734], +[0.3498920063333, -0.1188899624497], +[0.3550014050383, -0.1193031329693], +[0.3601076471808, -0.1197249130066], +[0.3652107050439, -0.1201554313933], +[0.370310552827, -0.1205948201254], +[0.3754071667684, -0.1210432144089], +[0.3805005252715, -0.1215007527034], +[0.385590609037, -0.1219675767631], +[0.3906774012001, -0.1224438316758], +[0.3957608874718, -0.1229296658987], +[0.400841056287, -0.1234252312912], +[0.405917898956, -0.1239306831433], +[0.4109914098218, -0.1244461802002], +[0.4160615864223, -0.1249718846822], +[0.4211284296567, -0.1255079622989], +[0.4261919439567, -0.126054582258], +[0.4312521374622, -0.1266119172672], +[0.4363090222004, -0.1271801435295], +[0.4413626142691, -0.1277594407305], +[0.4464129340228, -0.1283499920173], +[0.4514600062621, -0.1289519839686], +[0.4565038604246, -0.1295656065544], +[0.4615445307783, -0.130191053086], +[0.4665820566152, -0.1308285201543], +[0.4716164824452, -0.1314782075556], +[0.4766478581899, -0.1321403182059], +[0.4816762393743, -0.1328150580402], +[0.4867016873155, -0.133502635899], +[0.4917242693086, -0.1342032633987], +[0.4967440588066, -0.1349171547872], +[0.5017605375238, -0.1356443506947], +[-0.4991562400798, -0.1311338312438], +[-0.4941311509578, -0.1304100446412], +[-0.4891029630812, -0.1296996866403], +[-0.4840721898985, -0.1290024533581], +[-0.4790387605042, -0.1283181365805], +[-0.4740026098398, -0.127646530613], +[-0.4689636785245, -0.1269874324166], +[-0.4639219126817, -0.1263406417303], +[-0.4588772637611, -0.1257059611791], +[-0.4538296883595, -0.125083196369], +[-0.4487791480385, -0.1244721559694], +[-0.4437256091433, -0.123872651784], +[-0.4386690426196, -0.1232844988098], +[-0.4336094238329, -0.1227075152862], +[-0.4285467323882, -0.1221415227342], +[-0.4234809519522, -0.1215863459858], +[-0.4184120700778, -0.1210418132062], +[-0.4133400780315, -0.1205077559065], +[-0.408264970624, -0.1199840089505], +[-0.4031867460448, -0.119470410554], +[-0.3981054057004, -0.1189668022787], +[-0.3930209540565, -0.1184730290196], +[-0.387933398485, -0.1179889389885], +[-0.3828427491147, -0.1175143836923], +[-0.3777490186877, -0.1170492179072], +[-0.3726522224192, -0.1165932996496], +[-0.3675523778627, -0.1161464901435], +[-0.36244950478, -0.1157086537855], +[-0.3573436250156, -0.1152796581067], +[-0.3522347623761, -0.1148593737334], +[-0.3471229425139, -0.1144476743447], +[-0.3420081928158, -0.1140444366297], +[-0.3368905422962, -0.1136495402433], +[-0.3317700214949, -0.1132628677602], +[-0.3266466623785, -0.1128843046291], +[-0.3215204982475, -0.1125137391256], +[-0.3163915636462, -0.1121510623052], +[-0.3112598942777, -0.1117961679557], +[-0.3061255269223, -0.11144895255], +[-0.3009884993604, -0.1111093151983], +[-0.2958488502983, -0.1107771576015], +[-0.2907066192986, -0.1104523840038], +[-0.2855618467134, -0.1101349011466], +[-0.2804145736215, -0.1098246182225], +[-0.2752648417684, -0.1095214468302], +[-0.2701126935099, -0.1092253009294], +[-0.2649581717586, -0.1089360967978], +[-0.2598013199332, -0.1086537529871], +[-0.2546421819112, -0.1083781902814], +[-0.2494808019836, -0.1081093316556], +[-0.244317224813, -0.107847102235], +[-0.2391514953937, -0.107591429256], +[-0.2339836590145, -0.1073422420271], +[-0.2288137612236, -0.1070994718923], +[-0.2236418477961, -0.1068630521933], +[-0.2184679647035, -0.1066329182354], +[-0.2132921580851, -0.1064090072519], +[-0.2081144742215, -0.1061912583711], +[-0.2029349595102, -0.1059796125839], +[-0.1977536604427, -0.1057740127124], +[-0.1925706235832, -0.1055744033794], +[-0.1873858955497, -0.1053807309788], +[-0.1821995229957, -0.1051929436478], +[-0.1770115525945, -0.105010991239], +[-0.1718220310235, -0.1048348252941], +[-0.1666310049513, -0.1046643990189], +[-0.1614385210256, -0.104499667258], +[-0.1562446258621, -0.1043405864721], +[-0.1510493660344, -0.1041871147151], +[-0.145852788066, -0.1040392116122], +[-0.1406549384225, -0.1038968383395], +[-0.1354558635052, -0.103759957604], +[-0.1302556096453, -0.1036285336243], +[-0.1250542230999, -0.1035025321129], +[-0.1198517500476, -0.1033819202587], +[-0.1146482365861, -0.1032666667104], +[-0.1094437287297, -0.1031567415607], +[-0.1042382724085, -0.1030521163319], +[-0.09903191346708, -0.1029527639614], +[-0.09382469766508, -0.1028586587882], +[-0.08861667067746, -0.1027697765408], +[-0.08340787809585, -0.1026860943249], +[-0.07819836543024, -0.1026075906125], +[-0.07298817811132, -0.1025342452311], +[-0.06777736149314, -0.1024660393544], +[-0.06256596085635, -0.1024029554932], +[-0.05735402141171, -0.1023449774866], +[-0.05214158830415, -0.1022920904947], +[-0.04692870661699, -0.1022442809912], +[-0.04171542137662, -0.1022015367575], +[-0.03650177755735, -0.1021638468763], +[-0.03128782008659, -0.1021312017267], +[-0.02607359385026, -0.1021035929798], +[-0.02085914369831, -0.1020810135948], +[-0.01564451445046, -0.1020634578152], +[-0.01042975090213, -0.1020509211668], +[-0.005214897830382, -0.1020434004551], +[4.140069856176e-15, -0.1020408937641], +[0.005214897830382, -0.1020434004551], +[0.01042975090213, -0.1020509211668], +[0.01564451445046, -0.1020634578152], +[0.02085914369831, -0.1020810135948], +[0.02607359385026, -0.1021035929798], +[0.03128782008659, -0.1021312017267], +[0.03650177755735, -0.1021638468763], +[0.04171542137662, -0.1022015367575], +[0.04692870661699, -0.1022442809912], +[0.05214158830415, -0.1022920904946], +[0.05735402141171, -0.1023449774866], +[0.06256596085634, -0.1024029554932], +[0.06777736149314, -0.1024660393544], +[0.07298817811132, -0.1025342452311], +[0.07819836543024, -0.1026075906125], +[0.08340787809585, -0.1026860943249], +[0.08861667067747, -0.1027697765408], +[0.09382469766508, -0.1028586587882], +[0.09903191346708, -0.1029527639614], +[0.1042382724085, -0.1030521163319], +[0.1094437287297, -0.1031567415607], +[0.1146482365861, -0.1032666667104], +[0.1198517500476, -0.1033819202587], +[0.1250542230999, -0.1035025321129], +[0.1302556096453, -0.1036285336243], +[0.1354558635052, -0.103759957604], +[0.1406549384225, -0.1038968383395], +[0.145852788066, -0.1040392116122], +[0.1510493660344, -0.1041871147151], +[0.1562446258621, -0.1043405864721], +[0.1614385210256, -0.104499667258], +[0.1666310049513, -0.1046643990189], +[0.1718220310235, -0.1048348252941], +[0.1770115525945, -0.105010991239], +[0.1821995229957, -0.1051929436478], +[0.1873858955497, -0.1053807309788], +[0.1925706235832, -0.1055744033794], +[0.1977536604427, -0.1057740127124], +[0.2029349595102, -0.1059796125839], +[0.2081144742215, -0.1061912583711], +[0.2132921580851, -0.1064090072519], +[0.2184679647035, -0.1066329182354], +[0.2236418477961, -0.1068630521933], +[0.2288137612236, -0.1070994718923], +[0.2339836590145, -0.1073422420271], +[0.2391514953937, -0.107591429256], +[0.244317224813, -0.107847102235], +[0.2494808019836, -0.1081093316556], +[0.2546421819112, -0.1083781902814], +[0.2598013199332, -0.1086537529871], +[0.2649581717586, -0.1089360967978], +[0.2701126935099, -0.1092253009294], +[0.2752648417684, -0.1095214468302], +[0.2804145736215, -0.1098246182225], +[0.2855618467134, -0.1101349011466], +[0.2907066192986, -0.1104523840038], +[0.2958488502983, -0.1107771576015], +[0.3009884993604, -0.1111093151983], +[0.3061255269223, -0.11144895255], +[0.3112598942777, -0.1117961679557], +[0.3163915636462, -0.1121510623052], +[0.3215204982475, -0.1125137391256], +[0.3266466623785, -0.1128843046291], +[0.3317700214949, -0.1132628677602], +[0.3368905422962, -0.1136495402433], +[0.3420081928158, -0.1140444366297], +[0.3471229425139, -0.1144476743447], +[0.3522347623761, -0.1148593737334], +[0.3573436250156, -0.1152796581067], +[0.36244950478, -0.1157086537855], +[0.3675523778627, -0.1161464901435], +[0.3726522224192, -0.1165932996496], +[0.3777490186877, -0.1170492179072], +[0.3828427491147, -0.1175143836923], +[0.387933398485, -0.1179889389885], +[0.3930209540565, -0.1184730290196], +[0.3981054057004, -0.1189668022787], +[0.4031867460448, -0.119470410554], +[0.408264970624, -0.1199840089505], +[0.4133400780315, -0.1205077559065], +[0.4184120700778, -0.1210418132062], +[0.4234809519522, -0.1215863459858], +[0.4285467323882, -0.1221415227342], +[0.4336094238329, -0.1227075152862], +[0.4386690426196, -0.1232844988098], +[0.4437256091433, -0.123872651784], +[0.4487791480385, -0.1244721559694], +[0.4538296883595, -0.125083196369], +[0.4588772637611, -0.1257059611791], +[0.4639219126817, -0.1263406417303], +[0.4689636785245, -0.1269874324166], +[0.4740026098398, -0.127646530613], +[0.4790387605042, -0.1283181365805], +[0.4840721898985, -0.1290024533581], +[0.4891029630812, -0.1296996866403], +[0.4941311509578, -0.1304100446412], +[0.4991568073815, -0.1311336980954], +[-0.4965449298895, -0.126610782496], +[-0.4915115582896, -0.1258909431261], +[-0.4864752730881, -0.1251842365625], +[-0.4814366061365, -0.1244905188108], +[-0.4763954889333, -0.1238095874409], +[-0.4713518585291, -0.1231412424356], +[-0.4663056573676, -0.1224852863197], +[-0.4612568331227, -0.1218415242748], +[-0.456205338532, -0.1212097642425], +[-0.4511511312279, -0.1205898170148], +[-0.4460941735673, -0.1199814963123], +[-0.4410344324602, -0.1193846188523], +[-0.4359718791989, -0.1187990044061], +[-0.4309064892868, -0.118224475846], +[-0.4258382422695, -0.1176608591839], +[-0.4207671215674, -0.1171079836007], +[-0.4156931143095, -0.1165656814682], +[-0.4106162111715, -0.1160337883634], +[-0.4055364062158, -0.1155121430758], +[-0.4004536967347, -0.1150005876086], +[-0.3953680830981, -0.1144989671742], +[-0.3902795686038, -0.1140071301845], +[-0.3851881593331, -0.1135249282361], +[-0.380093864009, -0.1130522160917], +[-0.3749966938599, -0.1125888516572], +[-0.3698966624871, -0.1121346959555], +[-0.3647937857363, -0.1116896130973], +[-0.3596880815744, -0.1112534702489], +[-0.3545795699696, -0.1108261375982], +[-0.3494682727769, -0.110407488318], +[-0.3443542136272, -0.1099973985277], +[-0.3392374178212, -0.109595747254], +[-0.3341179122274, -0.1092024163894], +[-0.3289957251842, -0.108817290651], +[-0.3238708864065, -0.1084402575368], +[-0.3187434268959, -0.1080712072831], +[-0.3136133788551, -0.1077100328204], +[-0.3084807756063, -0.1073566297296], +[-0.303345651513, -0.1070108961973], +[-0.2982080419059, -0.1066727329726], +[-0.2930679830123, -0.1063420433221], +[-0.2879255118883, -0.1060187329871], +[-0.2827806663555, -0.1057027101397], +[-0.2776334849402, -0.1053938853404], +[-0.2724840068156, -0.1050921714951], +[-0.2673322717478, -0.104797483814], +[-0.2621783200441, -0.1045097397703], +[-0.2570221925043, -0.1042288590597], +[-0.2518639303746, -0.1039547635611], +[-0.2467035753047, -0.1036873772974], +[-0.2415411693068, -0.1034266263981], +[-0.236376754717, -0.1031724390618], +[-0.2312103741597, -0.1029247455202], +[-0.2260420705139, -0.1026834780029], +[-0.220871886881, -0.1024485707029], +[-0.2156998665559, -0.1022199597434], +[-0.2105260529992, -0.1019975831452], +[-0.2053504898117, -0.1017813807955], +[-0.2001732207103, -0.101571294417], +[-0.1949942895062, -0.1013672675386], +[-0.1898137400845, -0.1011692454667], +[-0.1846316163854, -0.1009771752576], +[-0.1794479623868, -0.1007910056906], +[-0.1742628220885, -0.1006106872426], +[-0.1690762394982, -0.1004361720626], +[-0.1638882586178, -0.1002674139487], +[-0.1586989234321, -0.100104368324], +[-0.1535082778981, -0.09994699221539], +[-0.1483163659353, -0.09979524423165], +[-0.1431232314177, -0.09964908454339], +[-0.1379289181664, -0.0995084748634], +[-0.1327334699433, -0.09937337842796], +[-0.1275369304459, -0.09924375997897], +[-0.1223393433025, -0.0991195857469], +[-0.1171407520688, -0.09900082343449], +[-0.1119412002254, -0.09888744220129], +[-0.1067407311754, -0.09877941264891], +[-0.1015393882432, -0.09867670680708], +[-0.09633721467383, -0.09857929812043], +[-0.09113425363314, -0.09848716143595], +[-0.08593054820828, -0.09840027299124], +[-0.08072614140893, -0.09831861040339], +[-0.07552107616897, -0.09824215265861], +[-0.07031539534877, -0.0981708801025], +[-0.06510914173776, -0.09810477443095], +[-0.05990235805759, -0.09804381868181], +[-0.0546950869656, -0.09798799722706], +[-0.04948737105865, -0.0979372957657], +[-0.04427925287731, -0.09789170131729], +[-0.03907077491031, -0.09785120221602], +[-0.03386197959932, -0.09781578810544], +[-0.0286529093439, -0.09778544993381], +[-0.02344360650673, -0.09776017995004], +[-0.01823411341892, -0.09773997170016], +[-0.01302447238561, -0.09772482002447], +[-0.007814725691558, -0.0977147210552], +[-0.002604915606924, -0.09770967221481], +[0.002604915606925, -0.09770967221481], +[0.007814725691559, -0.0977147210552], +[0.01302447238561, -0.09772482002447], +[0.01823411341892, -0.09773997170016], +[0.02344360650673, -0.09776017995004], +[0.0286529093439, -0.09778544993381], +[0.03386197959932, -0.09781578810544], +[0.03907077491031, -0.09785120221602], +[0.04427925287731, -0.09789170131729], +[0.04948737105865, -0.0979372957657], +[0.0546950869656, -0.09798799722706], +[0.05990235805759, -0.09804381868181], +[0.06510914173776, -0.09810477443095], +[0.07031539534877, -0.0981708801025], +[0.07552107616897, -0.09824215265861], +[0.08072614140892, -0.09831861040339], +[0.08593054820828, -0.09840027299124], +[0.09113425363314, -0.09848716143595], +[0.09633721467383, -0.09857929812043], +[0.1015393882432, -0.09867670680708], +[0.1067407311754, -0.09877941264891], +[0.1119412002254, -0.09888744220129], +[0.1171407520688, -0.09900082343449], +[0.1223393433025, -0.0991195857469], +[0.1275369304459, -0.09924375997897], +[0.1327334699433, -0.09937337842796], +[0.1379289181664, -0.0995084748634], +[0.1431232314177, -0.09964908454339], +[0.1483163659353, -0.09979524423165], +[0.1535082778981, -0.09994699221539], +[0.1586989234321, -0.100104368324], +[0.1638882586178, -0.1002674139487], +[0.1690762394982, -0.1004361720626], +[0.1742628220885, -0.1006106872426], +[0.1794479623868, -0.1007910056906], +[0.1846316163854, -0.1009771752576], +[0.1898137400845, -0.1011692454667], +[0.1949942895062, -0.1013672675386], +[0.2001732207103, -0.101571294417], +[0.2053504898117, -0.1017813807955], +[0.2105260529992, -0.1019975831452], +[0.2156998665559, -0.1022199597433], +[0.220871886881, -0.1024485707029], +[0.2260420705139, -0.1026834780029], +[0.2312103741597, -0.1029247455202], +[0.236376754717, -0.1031724390618], +[0.2415411693068, -0.1034266263981], +[0.2467035753047, -0.1036873772974], +[0.2518639303746, -0.1039547635611], +[0.2570221925043, -0.1042288590597], +[0.2621783200441, -0.1045097397703], +[0.2673322717478, -0.104797483814], +[0.2724840068156, -0.1050921714951], +[0.2776334849402, -0.1053938853404], +[0.2827806663555, -0.1057027101397], +[0.2879255118883, -0.1060187329871], +[0.2930679830123, -0.1063420433221], +[0.2982080419059, -0.1066727329726], +[0.303345651513, -0.1070108961973], +[0.3084807756063, -0.1073566297296], +[0.3136133788551, -0.1077100328204], +[0.3187434268959, -0.1080712072831], +[0.3238708864065, -0.1084402575368], +[0.3289957251842, -0.108817290651], +[0.3341179122274, -0.1092024163894], +[0.3392374178212, -0.109595747254], +[0.3443542136272, -0.1099973985277], +[0.3494682727769, -0.110407488318], +[0.3545795699696, -0.1108261375982], +[0.3596880815744, -0.1112534702489], +[0.3647937857363, -0.1116896130973], +[0.3698966624871, -0.1121346959555], +[0.3749966938599, -0.1125888516572], +[0.380093864009, -0.1130522160917], +[0.3851881593331, -0.1135249282361], +[0.3902795686038, -0.1140071301845], +[0.3953680830981, -0.1144989671742], +[0.4004536967347, -0.1150005876086], +[0.4055364062158, -0.1155121430758], +[0.4106162111715, -0.1160337883634], +[0.4156931143095, -0.1165656814682], +[0.4207671215674, -0.1171079836007], +[0.4258382422695, -0.1176608591839], +[0.4309064892868, -0.118224475846], +[0.4359718791989, -0.1187990044061], +[0.4410344324602, -0.1193846188523], +[0.4460941735673, -0.1199814963123], +[0.4511511312279, -0.1205898170148], +[0.456205338532, -0.1212097642425], +[0.4612568331227, -0.1218415242748], +[0.4663056573676, -0.1224852863197], +[0.4713518585291, -0.1231412424357], +[0.4763954889333, -0.1238095874409], +[0.4814366061365, -0.1244905188108], +[0.4864752730881, -0.1251842365625], +[0.4915115582896, -0.1258909431261], +[0.4965449298622, -0.1266107842933], +[-0.493927399688, -0.1220760981793], +[-0.4888854220637, -0.1213601038195], +[-0.4838413344091, -0.1206571645247], +[-0.478795065073, -0.1199670812353], +[-0.47374654782, -0.119289657069], +[-0.4686957216867, -0.118624697455], +[-0.4636425308329, -0.1179720102559], +[-0.458586924388, -0.117331405877], +[-0.4535288562955, -0.116702697364], +[-0.4484682851534, -0.1160857004888], +[-0.4434051740549, -0.1154802338246], +[-0.4383394904269, -0.1148861188112], +[-0.433271205869, -0.1143031798098], +[-0.4282002959935, -0.1137312441494], +[-0.4231267402651, -0.1131701421637], +[-0.4180505218439, -0.1126197072208], +[-0.4129716274285, -0.1120797757453], +[-0.4078900471034, -0.1115501872327], +[-0.4028057741877, -0.1110307842586], +[-0.397718805087, -0.1105214124806], +[-0.3926291391497, -0.1100219206362], +[-0.387536778525, -0.1095321605346], +[-0.3824417280263, -0.1090519870445], +[-0.3773439949968, -0.1085812580778], +[-0.3722435891806, -0.1081198345694], +[-0.367140522596, -0.1076675804539], +[-0.3620348094149, -0.1072243626396], +[-0.3569264658441, -0.1067900509789], +[-0.3518155100125, -0.1063645182375], +[-0.3467019618616, -0.1059476400612], +[-0.3415858430398, -0.1055392949408], +[-0.3364671768015, -0.1051393641758], +[-0.3313459879093, -0.1047477318365], +[-0.3262223025415, -0.1043642847258], +[-0.3210961482017, -0.1039889123391], +[-0.3159675536336, -0.1036215068248], +[-0.3108365487394, -0.1032619629435], +[-0.3057031645009, -0.1029101780271], +[-0.3005674329052, -0.102566051938], +[-0.2954293868734, -0.1022294870278], +[-0.2902890601929, -0.1019003880969], +[-0.2851464874527, -0.1015786623533], +[-0.280001703982, -0.1012642193725], +[-0.2748547457921, -0.1009569710575], +[-0.269705649521, -0.1006568315991], +[-0.2645544523814, -0.100363717437], +[-0.2594011921104, -0.1000775472214], +[-0.2542459069234, -0.09979824177536], +[-0.2490886354695, -0.09952572405742], +[-0.2439294167897, -0.09925991912565], +[-0.2387682902776, -0.0990007541019], +[-0.2336052956428, -0.09874815813709], +[-0.2284404728755, -0.09850206237732], +[-0.2232738622146, -0.09826239993077], +[-0.2181055041166, -0.09802910583551], +[-0.2129354392275, -0.09780211702813], +[-0.2077637083562, -0.09758137231333], +[-0.2025903524493, -0.09736681233433], +[-0.1974154125687, -0.09715837954422], +[-0.1922389298697, -0.09695601817816], +[-0.1870609455816, -0.09675967422653], +[-0.1818815009895, -0.09656929540892], +[-0.1767006374177, -0.09638483114904], +[-0.1715183962142, -0.09620623255046], +[-0.1663348187368, -0.09603345237331], +[-0.1611499463407, -0.09586644501174], +[-0.1559638203668, -0.0957051664723], +[-0.1507764821317, -0.09554957435314], +[-0.1455879729185, -0.09539962782406], +[-0.1403983339686, -0.09525528760733], +[-0.1352076064749, -0.09511651595937], +[-0.1300158315757, -0.0949832766532], +[-0.1248230503495, -0.09485553496165], +[-0.1196293038106, -0.0947332576414], +[-0.1144346329058, -0.0946164129177], +[-0.1092390785117, -0.09450497046986], +[-0.1040426814329, -0.09439890141753], +[-0.09884548240048, -0.09429817830755], +[-0.09364752207161, -0.09420277510164], +[-0.0884488410296, -0.09411266716475], +[-0.0832494797845, -0.09402783125402], +[-0.07804947877429, -0.09394824550847], +[-0.07284887836655, -0.09387388943934], +[-0.06764771886064, -0.09380474392104], +[-0.06244604049032, -0.09374079118278], +[-0.05724388342675, -0.09368201480076], +[-0.05204128778189, -0.09362839969105], +[-0.04683829361224, -0.09357993210304], +[-0.04163494092292, -0.09353659961342], +[-0.03643126967196, -0.09349839112092], +[-0.03122731977494, -0.09346529684144], +[-0.0260231311098, -0.09343730830387], +[-0.02081874352185, -0.09341441834649], +[-0.01561419682895, -0.09339662111385], +[-0.01040953082683, -0.09338391205433], +[-0.005204785294557, -0.09337628791815], +[-1.592334560068e-16, -0.09337374675598], +[0.005204785294557, -0.09337628791815], +[0.01040953082683, -0.09338391205433], +[0.01561419682895, -0.09339662111385], +[0.02081874352185, -0.09341441834648], +[0.0260231311098, -0.09343730830387], +[0.03122731977494, -0.09346529684144], +[0.03643126967196, -0.09349839112092], +[0.04163494092292, -0.09353659961343], +[0.04683829361224, -0.09357993210304], +[0.05204128778189, -0.09362839969105], +[0.05724388342675, -0.09368201480076], +[0.06244604049032, -0.09374079118278], +[0.06764771886064, -0.09380474392104], +[0.07284887836655, -0.09387388943934], +[0.07804947877429, -0.09394824550847], +[0.0832494797845, -0.09402783125402], +[0.0884488410296, -0.09411266716475], +[0.09364752207161, -0.09420277510164], +[0.09884548240048, -0.09429817830754], +[0.1040426814329, -0.09439890141753], +[0.1092390785117, -0.09450497046987], +[0.1144346329058, -0.0946164129177], +[0.1196293038106, -0.0947332576414], +[0.1248230503495, -0.09485553496165], +[0.1300158315757, -0.0949832766532], +[0.1352076064749, -0.09511651595938], +[0.1403983339686, -0.09525528760733], +[0.1455879729185, -0.09539962782406], +[0.1507764821317, -0.09554957435314], +[0.1559638203668, -0.0957051664723], +[0.1611499463407, -0.09586644501174], +[0.1663348187368, -0.09603345237331], +[0.1715183962142, -0.09620623255046], +[0.1767006374177, -0.09638483114904], +[0.1818815009895, -0.09656929540892], +[0.1870609455816, -0.09675967422653], +[0.1922389298697, -0.09695601817816], +[0.1974154125687, -0.09715837954422], +[0.2025903524493, -0.09736681233433], +[0.2077637083562, -0.09758137231333], +[0.2129354392275, -0.09780211702813], +[0.2181055041166, -0.09802910583551], +[0.2232738622146, -0.09826239993077], +[0.2284404728755, -0.09850206237732], +[0.2336052956428, -0.09874815813709], +[0.2387682902776, -0.0990007541019], +[0.2439294167897, -0.09925991912565], +[0.2490886354695, -0.09952572405742], +[0.2542459069234, -0.09979824177536], +[0.2594011921104, -0.1000775472214], +[0.2645544523814, -0.100363717437], +[0.269705649521, -0.1006568315991], +[0.2748547457921, -0.1009569710575], +[0.280001703982, -0.1012642193725], +[0.2851464874527, -0.1015786623533], +[0.2902890601929, -0.1019003880969], +[0.2954293868734, -0.1022294870278], +[0.3005674329052, -0.102566051938], +[0.3057031645009, -0.1029101780271], +[0.3108365487394, -0.1032619629435], +[0.3159675536336, -0.1036215068248], +[0.3210961482017, -0.1039889123391], +[0.3262223025415, -0.1043642847258], +[0.3313459879093, -0.1047477318365], +[0.3364671768015, -0.1051393641758], +[0.3415858430398, -0.1055392949408], +[0.3467019618616, -0.1059476400612], +[0.3518155100125, -0.1063645182375], +[0.3569264658441, -0.1067900509789], +[0.3620348094149, -0.1072243626396], +[0.367140522596, -0.1076675804539], +[0.3722435891806, -0.1081198345694], +[0.3773439949968, -0.1085812580778], +[0.3824417280263, -0.1090519870445], +[0.387536778525, -0.1095321605346], +[0.3926291391497, -0.1100219206362], +[0.397718805087, -0.1105214124806], +[0.4028057741877, -0.1110307842586], +[0.4078900471034, -0.1115501872327], +[0.4129716274285, -0.1120797757453], +[0.4180505218439, -0.1126197072208], +[0.4231267402651, -0.1131701421637], +[0.4282002959935, -0.1137312441494], +[0.433271205869, -0.1143031798098], +[0.4383394904269, -0.1148861188112], +[0.4434051740549, -0.1154802338246], +[0.4484682851534, -0.1160857004888], +[0.4535288562955, -0.116702697364], +[0.458586924388, -0.117331405877], +[0.4636425308329, -0.1179720102559], +[0.4686957216867, -0.118624697455], +[0.47374654782, -0.119289657069], +[0.478795065073, -0.1199670812353], +[0.4838413344091, -0.1206571645247], +[0.4888854220637, -0.1213601038195], +[0.4939273995338, -0.1220760983263], +[-0.4913025665178, -0.1175297537671], +[-0.4862528810913, -0.1168177756187], +[-0.4812012799436, -0.1161187172627], +[-0.4761476938311, -0.1154323850525], +[-0.4710920586517, -0.1147585874293], +[-0.4660343153095, -0.1140971350495], +[-0.4609744095751, -0.1134478409], +[-0.4559122919414, -0.1128105204016], +[-0.4508479174768, -0.1121849915018], +[-0.445781245676, -0.111571074757], +[-0.4407122403096, -0.1109685934041], +[-0.4356408692724, -0.1103773734229], +[-0.4305671044323, -0.1097972435895], +[-0.4254909214786, -0.1092280355206], +[-0.4204122997721, -0.1086695837105], +[-0.4153312221964, -0.1081217255599], +[-0.4102476750102, -0.1075843013982], +[-0.4051616477032, -0.1070571544988], +[-0.400073132853, -0.1065401310888], +[-0.3949821259859, -0.1060330803529], +[-0.3898886254397, -0.1055358544321], +[-0.3847926322306, -0.1050483084179], +[-0.3796941499231, -0.104570300342], +[-0.3745931845027, -0.1041016911624], +[-0.3694897442539, -0.1036423447457], +[-0.3643838396399, -0.1031921278465], +[-0.3592754831874, -0.1027509100835], +[-0.3541646893752, -0.1023185639138], +[-0.3490514745253, -0.1018949646044], +[-0.3439358566998, -0.1014799902021], +[-0.3388178555998, -0.1010735215015], +[-0.3336974924691, -0.1006754420117], +[-0.3285747900016, -0.1002856379217], +[-0.3234497722517, -0.0999039980649], +[-0.3183224645494, -0.09953041388278], +[-0.3131928934184, -0.0991647793878], +[-0.3080610864972, -0.09880699112598], +[-0.3029270724649, -0.09845694813908], +[-0.2977908809694, -0.09811455192667], +[-0.2926525425591, -0.09777970640799], +[-0.2875120886182, -0.09745231788407], +[-0.2823695513043, -0.09713229499981], +[-0.27722496349, -0.09681954870645], +[-0.2720783587066, -0.09651399222428], +[-0.2669297710915, -0.09621554100582], +[-0.2617792353373, -0.0959241126994], +[-0.2566267866444, -0.09563962711337], +[-0.2514724606761, -0.09536200618083], +[-0.2463162935157, -0.09509117392498], +[-0.2411583216267, -0.0948270564252], +[-0.2359985818143, -0.09456958178377], +[-0.2308371111905, -0.09431868009341], +[-0.2256739471402, -0.09407428340547], +[-0.22050912729, -0.093836325699], +[-0.2153426894784, -0.0936047428506], +[-0.2101746717288, -0.09337947260498], +[-0.2050051122237, -0.09316045454653], +[-0.1998340492804, -0.09294763007152], +[-0.1946615213294, -0.09274094236129], +[-0.1894875668933, -0.09254033635618], +[-0.1843122245682, -0.09234575873031], +[-0.1791355330059, -0.09215715786727], +[-0.1739575308978, -0.09197448383651], +[-0.1687782569602, -0.09179768837068], +[-0.163597749921, -0.09162672484368], +[-0.1584160485073, -0.09146154824962], +[-0.1532331914343, -0.09130211518253], +[-0.148049217396, -0.09114838381684], +[-0.1428641650557, -0.09100031388868], +[-0.1376780730388, -0.09085786667796], +[-0.1324909799257, -0.09072100499122], +[-0.127302924246, -0.0905896931451], +[-0.1221139444739, -0.09046389695075], +[-0.1169240790237, -0.09034358369886], +[-0.1117333662466, -0.09022872214534], +[-0.1065418444284, -0.09011928249784], +[-0.1013495517874, -0.09001523640285], +[-0.09615652647323, -0.08991655693353], +[-0.09096280656671, -0.0898232185782], +[-0.08576843007953, -0.08973519722945], +[-0.08057343495513, -0.08965247017395], +[-0.07537785906982, -0.08957501608284], +[-0.07018174023448, -0.08950281500278], +[-0.06498511619669, -0.08943584834759], +[-0.05978802464329, -0.08937409889047], +[-0.05459050320332, -0.08931755075688], +[-0.04939258945139, -0.08926618941795], +[-0.04419432091128, -0.08922000168448], +[-0.03899573505989, -0.08917897570149], +[-0.03379686933149, -0.08914310094341], +[-0.02859776112217, -0.08911236820971], +[-0.02339844779447, -0.08908676962117], +[-0.01819896668228, -0.08906629861667], +[-0.01299935509583, -0.08905094995048], +[-0.007799650326788, -0.08904071969021], +[-0.002599889653544, -0.08903560521512], +[0.002599889653544, -0.08903560521512], +[0.007799650326788, -0.08904071969021], +[0.01299935509583, -0.08905094995048], +[0.01819896668228, -0.08906629861666], +[0.02339844779447, -0.08908676962117], +[0.02859776112217, -0.08911236820971], +[0.03379686933149, -0.08914310094341], +[0.03899573505989, -0.08917897570149], +[0.04419432091128, -0.08922000168448], +[0.04939258945139, -0.08926618941795], +[0.05459050320332, -0.08931755075688], +[0.05978802464329, -0.08937409889047], +[0.06498511619669, -0.08943584834759], +[0.07018174023448, -0.08950281500278], +[0.07537785906982, -0.08957501608284], +[0.08057343495513, -0.08965247017395], +[0.08576843007953, -0.08973519722945], +[0.0909628065667, -0.0898232185782], +[0.09615652647323, -0.08991655693353], +[0.1013495517874, -0.09001523640285], +[0.1065418444284, -0.09011928249784], +[0.1117333662466, -0.09022872214535], +[0.1169240790237, -0.09034358369886], +[0.1221139444739, -0.09046389695075], +[0.127302924246, -0.0905896931451], +[0.1324909799257, -0.09072100499122], +[0.1376780730388, -0.09085786667798], +[0.1428641650557, -0.09100031388868], +[0.148049217396, -0.09114838381684], +[0.1532331914343, -0.09130211518253], +[0.1584160485073, -0.09146154824962], +[0.163597749921, -0.09162672484368], +[0.1687782569602, -0.09179768837068], +[0.1739575308978, -0.09197448383651], +[0.1791355330059, -0.09215715786727], +[0.1843122245682, -0.09234575873031], +[0.1894875668933, -0.09254033635618], +[0.1946615213294, -0.09274094236129], +[0.1998340492804, -0.09294763007152], +[0.2050051122237, -0.09316045454653], +[0.2101746717288, -0.09337947260498], +[0.2153426894784, -0.0936047428506], +[0.22050912729, -0.093836325699], +[0.2256739471402, -0.09407428340547], +[0.2308371111905, -0.09431868009341], +[0.2359985818143, -0.09456958178377], +[0.2411583216267, -0.0948270564252], +[0.2463162935157, -0.09509117392498], +[0.2514724606761, -0.09536200618083], +[0.2566267866444, -0.09563962711337], +[0.2617792353373, -0.0959241126994], +[0.2669297710915, -0.09621554100582], +[0.2720783587066, -0.09651399222428], +[0.27722496349, -0.09681954870645], +[0.2823695513043, -0.09713229499981], +[0.2875120886182, -0.09745231788407], +[0.2926525425591, -0.09777970640799], +[0.2977908809694, -0.09811455192667], +[0.3029270724649, -0.09845694813908], +[0.3080610864972, -0.09880699112598], +[0.3131928934184, -0.0991647793878], +[0.3183224645494, -0.09953041388278], +[0.3234497722517, -0.0999039980649], +[0.3285747900016, -0.1002856379217], +[0.3336974924692, -0.1006754420117], +[0.3388178555998, -0.1010735215015], +[0.3439358566998, -0.1014799902021], +[0.3490514745253, -0.1018949646044], +[0.3541646893752, -0.1023185639138], +[0.3592754831874, -0.1027509100835], +[0.3643838396399, -0.1031921278465], +[0.3694897442539, -0.1036423447457], +[0.3745931845027, -0.1041016911624], +[0.3796941499231, -0.104570300342], +[0.3847926322306, -0.1050483084179], +[0.3898886254397, -0.1055358544321], +[0.3949821259859, -0.1060330803529], +[0.400073132853, -0.1065401310888], +[0.4051616477032, -0.1070571544988], +[0.4102476750102, -0.1075843013982], +[0.4153312221964, -0.1081217255599], +[0.4204122997721, -0.1086695837105], +[0.4254909214786, -0.1092280355206], +[0.4305671044323, -0.1097972435895], +[0.4356408692724, -0.1103773734229], +[0.4407122403096, -0.1109685934041], +[0.445781245676, -0.111571074757], +[0.4508479174768, -0.1121849915018], +[0.4559122919414, -0.1128105204016], +[0.4609744095751, -0.1134478409], +[0.4660343153095, -0.1140971350495], +[0.4710920586517, -0.1147585874293], +[0.4761476938311, -0.1154323850524], +[0.4812012799436, -0.1161187172627], +[0.4862528810913, -0.1168177756187], +[0.4913025665178, -0.1175297537671], +[-0.4886711786882, -0.1129720563517], +[-0.483614071846, -0.1122642029602], +[-0.4785552405073, -0.1115691371057], +[-0.4734946176949, -0.1108866703378], +[-0.4684321413123, -0.1102166162093], +[-0.4633677540167, -0.1095587903957], +[-0.4583014030874, -0.1089130108051], +[-0.4532330402905, -0.108279097676], +[-0.4481626217405, -0.107656873666], +[-0.4430901077605, -0.1070461639295], +[-0.43801546274, -0.1064467961872], +[-0.4329386549926, -0.1058586007851], +[-0.4278596566136, -0.1052814107466], +[-0.4227784433372, -0.1047150618155], +[-0.4176949943948, -0.1041593924919], +[-0.4126092923754, -0.1036142440612], +[-0.4075213230858, -0.1030794606159], +[-0.4024310754144, -0.102554889072], +[-0.3973385411968, -0.1020403791793], +[-0.392243715083, -0.1015357835263], +[-0.3871465944088, -0.1010409575409], +[-0.3820471790693, -0.1005557594858], +[-0.376945471395, -0.1000800504505], +[-0.3718414760328, -0.0996136943392], +[-0.3667351998285, -0.09915655785587], +[-0.3616266517136, -0.09870851048556], +[-0.3565158425959, -0.09826942447361], +[-0.3514027852532, -0.09783917480225], +[-0.34628749423, -0.09741763916501], +[-0.3411699857394, -0.09700469793936], +[-0.3360502775665, -0.09660023415765], +[-0.3309283889771, -0.09620413347667], +[-0.3258043406291, -0.09581628414606], +[-0.3206781544872, -0.09543657697563], +[-0.3155498537415, -0.09506490530199], +[-0.3104194627296, -0.09470116495444], +[-0.3052870068613, -0.09434525422039], +[-0.3001525125469, -0.09399707381047], +[-0.2950160071295, -0.09365652682339], +[-0.2898775188187, -0.09332351871071], +[-0.2847370766292, -0.0929979572416], +[-0.2795947103209, -0.09267975246777], +[-0.2744504503426, -0.09236881668853], +[-0.2693043277783, -0.09206506441615], +[-0.2641563742965, -0.09176841234159], +[-0.2590066221014, -0.09147877930068], +[-0.2538551038876, -0.09119608624065], +[-0.2487018527966, -0.09092025618734], +[-0.2435469023756, -0.09065121421285], +[-0.2383902865391, -0.09038888740394], +[-0.2332320395327, -0.09013320483091], +[-0.2280721958983, -0.08988409751731], +[-0.2229107904423, -0.08964149841025], +[-0.2177478582051, -0.08940534235137], +[-0.2125834344329, -0.08917556604891], +[-0.2074175545513, -0.08895210804996], +[-0.2022502541402, -0.08873490871395], +[-0.1970815689112, -0.08852391018666], +[-0.1919115346862, -0.08831905637514], +[-0.1867401873771, -0.0881202929233], +[-0.1815675629679, -0.08792756718837], +[-0.1763936974977, -0.08774082821807], +[-0.1712186270452, -0.08756002672862], +[-0.1660423877145, -0.08738511508346], +[-0.1608650156218, -0.08721604727279], +[-0.1556865468845, -0.08705277889383], +[-0.1505070176097, -0.08689526713188], +[-0.1453264638853, -0.08674347074207], +[-0.1401449217713, -0.08659735003189], +[-0.1349624272927, -0.08645686684444], +[-0.1297790164324, -0.08632198454234], +[-0.1245947251262, -0.08619266799246], +[-0.1194095892579, -0.08606888355125], +[-0.1142236446553, -0.08595059905077], +[-0.1090369270871, -0.08583778378541], +[-0.1038494722606, -0.08573040849931], +[-0.09866131582007, -0.08562844537432], +[-0.09347249334534, -0.08553186801875], +[-0.08828304035179, -0.08544065145661], +[-0.08309299229025, -0.08535477211755], +[-0.07790238454779, -0.0852742078274], +[-0.07271125244892, -0.08519893779929], +[-0.06751963125723, -0.08512894262537], +[-0.06232755617753, -0.08506420426907], +[-0.05713506235842, -0.08500470605804], +[-0.05194218489511, -0.08495043267752], +[-0.04674895883277, -0.08490137016435], +[-0.04155541917002, -0.0848575059015], +[-0.03636160086283, -0.08481882861317], +[-0.03116753882859, -0.08478532836035], +[-0.02597326795047, -0.084756996537], +[-0.02077882308194, -0.08473382586671], +[-0.01558423905145, -0.08471581039986], +[-0.01038955066729, -0.08470294551137], +[-0.00519479272252, -0.08469522789886], +[9.554007360407e-17, -0.08469265558143], +[0.00519479272252, -0.08469522789886], +[0.01038955066729, -0.08470294551137], +[0.01558423905145, -0.08471581039986], +[0.02077882308194, -0.08473382586671], +[0.02597326795047, -0.084756996537], +[0.03116753882859, -0.08478532836035], +[0.03636160086283, -0.08481882861317], +[0.04155541917002, -0.08485750590151], +[0.04674895883277, -0.08490137016435], +[0.05194218489511, -0.08495043267751], +[0.05713506235842, -0.08500470605804], +[0.06232755617753, -0.08506420426907], +[0.06751963125723, -0.08512894262537], +[0.07271125244892, -0.08519893779929], +[0.0779023845478, -0.0852742078274], +[0.08309299229025, -0.08535477211755], +[0.08828304035179, -0.08544065145661], +[0.09347249334534, -0.08553186801875], +[0.09866131582007, -0.08562844537432], +[0.1038494722606, -0.0857304084993], +[0.1090369270871, -0.08583778378541], +[0.1142236446553, -0.08595059905077], +[0.1194095892579, -0.08606888355125], +[0.1245947251262, -0.08619266799246], +[0.1297790164324, -0.08632198454234], +[0.1349624272927, -0.08645686684443], +[0.1401449217713, -0.08659735003189], +[0.1453264638853, -0.08674347074207], +[0.1505070176097, -0.08689526713188], +[0.1556865468845, -0.08705277889383], +[0.1608650156218, -0.08721604727279], +[0.1660423877145, -0.08738511508346], +[0.1712186270452, -0.08756002672862], +[0.1763936974977, -0.08774082821807], +[0.1815675629679, -0.08792756718837], +[0.1867401873771, -0.0881202929233], +[0.1919115346862, -0.08831905637514], +[0.1970815689112, -0.08852391018666], +[0.2022502541402, -0.08873490871395], +[0.2074175545513, -0.08895210804996], +[0.2125834344329, -0.08917556604891], +[0.2177478582051, -0.08940534235137], +[0.2229107904422, -0.08964149841029], +[0.2280721958983, -0.08988409751731], +[0.2332320395327, -0.09013320483091], +[0.2383902865391, -0.09038888740394], +[0.2435469023756, -0.09065121421285], +[0.2487018527966, -0.09092025618734], +[0.2538551038876, -0.09119608624065], +[0.2590066221014, -0.09147877930068], +[0.2641563742965, -0.09176841234159], +[0.2693043277783, -0.09206506441615], +[0.2744504503426, -0.09236881668853], +[0.2795947103209, -0.09267975246777], +[0.2847370766292, -0.0929979572416], +[0.2898775188187, -0.09332351871071], +[0.2950160071295, -0.09365652682339], +[0.3001525125469, -0.09399707381047], +[0.3052870068613, -0.09434525422038], +[0.3104194627296, -0.09470116495444], +[0.3155498537415, -0.09506490530199], +[0.3206781544872, -0.09543657697563], +[0.3258043406291, -0.09581628414606], +[0.3309283889771, -0.09620413347667], +[0.3360502775665, -0.09660023415765], +[0.3411699857394, -0.09700469793936], +[0.34628749423, -0.09741763916501], +[0.3514027852532, -0.09783917480225], +[0.3565158425959, -0.09826942447361], +[0.3616266517136, -0.09870851048556], +[0.3667351998285, -0.09915655785587], +[0.3718414760328, -0.0996136943392], +[0.376945471395, -0.1000800504505], +[0.3820471790693, -0.1005557594858], +[0.3871465944088, -0.1010409575409], +[0.392243715083, -0.1015357835263], +[0.3973385411968, -0.1020403791793], +[0.4024310754144, -0.102554889072], +[0.4075213230858, -0.1030794606159], +[0.4126092923754, -0.1036142440612], +[0.4176949943948, -0.1041593924919], +[0.4227784433372, -0.1047150618155], +[0.4278596566136, -0.1052814107466], +[0.4329386549926, -0.1058586007851], +[0.43801546274, -0.1064467961872], +[0.4430901077605, -0.1070461639295], +[0.4481626217405, -0.107656873666], +[0.4532330402905, -0.108279097676], +[0.4583014030874, -0.1089130108051], +[0.4633677540167, -0.1095587903957], +[0.4684321413123, -0.1102166162093], +[0.4734946176949, -0.1108866703378], +[0.4785552405073, -0.1115691371056], +[0.483614071846, -0.1122642029602], +[0.4886711786882, -0.1129720563517], +[-0.4860333759709, -0.1084032480251], +[-0.4809691285695, -0.1076996260277], +[-0.4759033449241, -0.1070086621794], +[-0.4708359601881, -0.1063301730209], +[-0.4657669141477, -0.1056639770146], +[-0.4606961511025, -0.1050098946578], +[-0.4556236197416, -0.1043677485867], +[-0.4505492730163, -0.1037373636697], +[-0.4454730680101, -0.1031185670912], +[-0.4403949658067, -0.1025111884269], +[-0.4353149313564, -0.1019150597088], +[-0.4302329333423, -0.1013300154839], +[-0.4251489440458, -0.1007558928627], +[-0.420062939212, -0.1001925315621], +[-0.4149748979167, -0.09963977394038], +[-0.4098848024336, -0.09909746502542], +[-0.4047926381036, -0.09856545253722], +[-0.3996983932052, -0.09804358690434], +[-0.3946020588279, -0.09753172127508], +[-0.3895036287467, -0.09702971152369], +[-0.3844030993002, -0.09653741625201], +[-0.3793004692708, -0.09605469678687], +[-0.3741957397679, -0.09558141717365], +[-0.3690889141141, -0.09511744416641], +[-0.3639799977347, -0.09466264721472], +[-0.3588689980498, -0.09421689844766], +[-0.3537559243705, -0.09378007265526], +[-0.3486407877975, -0.0933520472676], +[-0.3435236011238, -0.09293270233186], +[-0.3384043787401, -0.09252192048753], +[-0.3332831365441, -0.09211958694017], +[-0.3281598918524, -0.0917255894336], +[-0.3230346633169, -0.09133981822111], +[-0.3179074708427, -0.09096216603559], +[-0.3127783355114, -0.09059252805887], +[-0.3076472795053, -0.0902308018904], +[-0.3025143260368, -0.08987688751547], +[-0.2973794992793, -0.08953068727303], +[-0.2922428243021, -0.08919210582321], +[-0.2871043270078, -0.08886105011484], +[-0.2819640340725, -0.08853742935283], +[-0.2768219728891, -0.08822115496569], +[-0.2716781715135, -0.08791214057312], +[-0.2665326586125, -0.08761030195394], +[-0.2613854634155, -0.08731555701424], +[-0.2562366156678, -0.08702782575594], +[-0.2510861455867, -0.08674703024575], +[-0.2459340838202, -0.08647309458459], +[-0.2407804614072, -0.08620594487757], +[-0.2356253097407, -0.08594550920448], +[-0.2304686605327, -0.08569171759089], +[-0.2253105457813, -0.08544450197988], +[-0.2201509977396, -0.08520379620437], +[-0.2149900488866, -0.08496953596016], +[-0.2098277319001, -0.08474165877962], +[-0.2046640796313, -0.0845201040061], +[-0.1994991250807, -0.08430481276902], +[-0.1943329013761, -0.08409572795973], +[-0.189165441752, -0.083892794208], +[-0.1839967795309, -0.08369595785932], +[-0.1788269481049, -0.0835051669529], +[-0.1736559809202, -0.08332037120038], +[-0.1684839114616, -0.0831415219653], +[-0.1633107732394, -0.08296857224324], +[-0.1581365997765, -0.08280147664275], +[-0.1529614245973, -0.08264019136694], +[-0.1477852812177, -0.08248467419578], +[-0.1426082031359, -0.08233488446914], +[-0.1374302238241, -0.08219078307045], +[-0.1322513767217, -0.08205233241115], +[-0.1270716952292, -0.08191949641568], +[-0.1218912127023, -0.08179224050725], +[-0.1167099624481, -0.08167053159421], +[-0.1115279777209, -0.08155433805707], +[-0.1063452917196, -0.08144362973615], +[-0.1011619375852, -0.08133837791987], +[-0.09597794839941, -0.08123855533365], +[-0.09079335718369, -0.08114413612941], +[-0.08560819689882, -0.08105509587567], +[-0.08042250044519, -0.08097141154821], +[-0.07523630066353, -0.08089306152134], +[-0.07004963033615, -0.08082002555971], +[-0.06486252218863, -0.08075228481072], +[-0.05967500889192, -0.08068982179739], +[-0.05448712306488, -0.08063262041189], +[-0.04929889727711, -0.08058066590949], +[-0.04411036405216, -0.08053394490312], +[-0.03892155587105, -0.08049244535836], +[-0.033732505176, -0.0804561565891], +[-0.02854324437444, -0.08042506925351], +[-0.02335380584326, -0.08039917535064], +[-0.01816422193316, -0.08037846821752], +[-0.01297452497323, -0.08036294252667], +[-0.007784747275593, -0.08035259428418], +[-0.002594921140229, -0.08034742082826], +[0.002594921140229, -0.08034742082826], +[0.007784747275593, -0.08035259428418], +[0.01297452497323, -0.08036294252667], +[0.01816422193316, -0.08037846821752], +[0.02335380584326, -0.08039917535064], +[0.02854324437444, -0.08042506925351], +[0.03373250517599, -0.0804561565891], +[0.03892155587105, -0.08049244535836], +[0.04411036405216, -0.08053394490311], +[0.04929889727711, -0.08058066590949], +[0.05448712306488, -0.08063262041189], +[0.05967500889192, -0.08068982179739], +[0.06486252218863, -0.08075228481072], +[0.07004963033615, -0.08082002555971], +[0.07523630066353, -0.08089306152134], +[0.08042250044519, -0.08097141154821], +[0.08560819689882, -0.08105509587567], +[0.09079335718369, -0.08114413612941], +[0.0959779483994, -0.08123855533365], +[0.1011619375852, -0.08133837791987], +[0.1063452917196, -0.08144362973615], +[0.1115279777209, -0.08155433805707], +[0.1167099624481, -0.08167053159421], +[0.1218912127023, -0.08179224050725], +[0.1270716952292, -0.08191949641568], +[0.1322513767217, -0.08205233241115], +[0.1374302238241, -0.08219078307045], +[0.1426082031359, -0.08233488446914], +[0.1477852812177, -0.08248467419578], +[0.1529614245973, -0.08264019136694], +[0.1581365997765, -0.08280147664275], +[0.1633107732394, -0.08296857224324], +[0.1684839114616, -0.0831415219653], +[0.1736559809202, -0.08332037120038], +[0.1788269481049, -0.0835051669529], +[0.1839967795309, -0.08369595785932], +[0.189165441752, -0.083892794208], +[0.1943329013761, -0.08409572795973], +[0.1994991250807, -0.08430481276902], +[0.2046640796313, -0.0845201040061], +[0.2098277319001, -0.08474165877962], +[0.2149900488866, -0.08496953596016], +[0.2201509977396, -0.08520379620437], +[0.2253105457813, -0.08544450197988], +[0.2304686605327, -0.08569171759089], +[0.2356253097407, -0.08594550920448], +[0.2407804614072, -0.08620594487757], +[0.2459340838202, -0.08647309458459], +[0.2510861455867, -0.08674703024575], +[0.2562366156678, -0.08702782575594], +[0.2613854634155, -0.08731555701424], +[0.2665326586125, -0.08761030195394], +[0.2716781715135, -0.08791214057312], +[0.2768219728891, -0.08822115496569], +[0.2819640340725, -0.08853742935283], +[0.2871043270078, -0.08886105011484], +[0.2922428243021, -0.0891921058232], +[0.2973794992793, -0.08953068727303], +[0.3025143260368, -0.08987688751547], +[0.3076472795053, -0.0902308018904], +[0.3127783355114, -0.09059252805887], +[0.3179074708427, -0.09096216603559], +[0.3230346633169, -0.09133981822111], +[0.3281598918524, -0.0917255894336], +[0.3332831365441, -0.09211958694017], +[0.3384043787401, -0.09252192048753], +[0.3435236011238, -0.09293270233186], +[0.3486407877975, -0.0933520472676], +[0.3537559243705, -0.09378007265526], +[0.3588689980498, -0.09421689844766], +[0.3639799977347, -0.09466264721472], +[0.3690889141141, -0.09511744416641], +[0.3741957397679, -0.09558141717365], +[0.3793004692708, -0.09605469678687], +[0.3844030993002, -0.09653741625201], +[0.3895036287467, -0.09702971152369], +[0.3946020588279, -0.09753172127508], +[0.3996983932052, -0.09804358690434], +[0.4047926381036, -0.09856545253722], +[0.4098848024336, -0.09909746502542], +[0.4149748979167, -0.09963977394038], +[0.420062939212, -0.1001925315621], +[0.4251489440458, -0.1007558928627], +[0.4302329333423, -0.1013300154839], +[0.4353149313564, -0.1019150597088], +[0.4403949658067, -0.1025111884269], +[0.4454730680101, -0.1031185670912], +[0.4505492730163, -0.1037373636697], +[0.4556236197416, -0.1043677485867], +[0.4606961511025, -0.1050098946578], +[0.4657669141477, -0.1056639770146], +[0.4708359601881, -0.1063301730209], +[0.4759033449241, -0.1070086621794], +[0.4809691285695, -0.1076996260277], +[0.4860333759709, -0.1084032480251], +[-0.4833887387086, -0.1038232936338], +[-0.4783181833725, -0.1031242809475], +[-0.4732457201127, -0.1024375265984], +[-0.4681718431472, -0.1017631250733], +[-0.4630964940266, -0.1011008995523], +[-0.4580196185857, -0.1004506751666], +[-0.4529411668272, -0.09981227909691], +[-0.4478610928021, -0.09918554066221], +[-0.4427793544867, -0.09857029139987], +[-0.437695913659, -0.09796636513711], +[-0.4326107357723, -0.09737359805417], +[-0.4275237898296, -0.09679182873978], +[-0.4224350482564, -0.09622089823912], +[-0.4173444867742, -0.09566065009481], +[-0.4122520842749, -0.09511093038144], +[-0.4071578226952, -0.09457158773346], +[-0.4020616868937, -0.09404247336779], +[-0.3969636645282, -0.09352344110068], +[-0.3918637459359, -0.09301434735957], +[-0.3867619240149, -0.09251505119033], +[-0.381658194109, -0.09202541426013], +[-0.3765525538937, -0.09154530085639], +[-0.3714450032663, -0.09107457788195], +[-0.3663355442375, -0.0906131148471], +[-0.3612241808266, -0.0901607838584], +[-0.3561109189593, -0.08971745960485], +[-0.3509957663689, -0.08928301934156], +[-0.3458787325004, -0.08885734287121], +[-0.3407598284174, -0.08844031252359], +[-0.3356390667123, -0.08803181313317], +[-0.3305164614201, -0.08763173201558], +[-0.3253920279347, -0.08723995894227], +[-0.3202657829284, -0.08685638611434], +[-0.3151377442746, -0.08648090813533], +[-0.3100079309737, -0.08611342198317], +[-0.3048763630818, -0.0857538269815], +[-0.2997430616421, -0.0854020247705], +[-0.29460804862, -0.08505791927728], +[-0.28947134684, -0.08472141668609], +[-0.284332979926, -0.08439242540826], +[-0.2791929722447, -0.08407085605217], +[-0.2740513488507, -0.08375662139321], +[-0.2689081354348, -0.0834496363439], +[-0.2637633582748, -0.08314981792411], +[-0.2586170441887, -0.08285708523164], +[-0.2534692204901, -0.08257135941306], +[-0.248319914946, -0.08229256363491], +[-0.2431691557373, -0.08202062305539], +[-0.2380169714205, -0.08175546479643], +[-0.2328633908925, -0.0814970179163], +[-0.2277084433567, -0.0812452133828], +[-0.2225521582916, -0.08099998404693], +[-0.217394565421, -0.08076126461719], +[-0.2122356946857, -0.08052899163453], +[-0.2070755762179, -0.08030310344785], +[-0.2019142403165, -0.08008354019019], +[-0.1967517174239, -0.07987024375559], +[-0.1915880381053, -0.07966315777658], +[-0.1864232330286, -0.07946222760229], +[-0.181257332946, -0.0792674002775], +[-0.1760903686775, -0.07907862452182], +[-0.1709223710949, -0.07889585071023], +[-0.1657533711074, -0.07871903085375], +[-0.1605833996491, -0.07854811858109], +[-0.1554124876665, -0.07838306912085], +[-0.1502406661078, -0.07822383928439], +[-0.1450679659137, -0.07807038744942], +[-0.139894418008, -0.0779226735442], +[-0.1347200532903, -0.07778065903237], +[-0.1295449026291, -0.07764430689851], +[-0.124368996856, -0.0775135816342], +[-0.1191923667606, -0.07738844922483], +[-0.1140150430863, -0.07726887713692], +[-0.1088370565265, -0.07715483430615], +[-0.1036584377226, -0.07704629112589], +[-0.09847921726097, -0.07694321943637], +[-0.09329942567236, -0.07684559251442], +[-0.0881190934306, -0.07675338506379], +[-0.08293825095252, -0.07666657320596], +[-0.07775692859824, -0.07658513447162], +[-0.07257515667198, -0.07650904779261], +[-0.06739296542329, -0.07643829349436], +[-0.06221038504884, -0.07637285328898], +[-0.05702744569447, -0.07631271026875], +[-0.05184417745771, -0.07625784890015], +[-0.04666061039067, -0.07620825501847], +[-0.04147677450307, -0.07616391582278], +[-0.0362926997658, -0.07612481987149], +[-0.03110841611454, -0.07609095707841], +[-0.02592395345367, -0.07606231870919], +[-0.02073934166042, -0.07603889737831], +[-0.01555461058912, -0.07602068704657], +[-0.01036979007559, -0.07600768301895], +[-0.005184909941709, -0.07599988194303], +[-1.337561030457e-15, -0.07599728180781], +[0.005184909941709, -0.07599988194303], +[0.01036979007559, -0.07600768301895], +[0.01555461058912, -0.07602068704657], +[0.02073934166042, -0.07603889737831], +[0.02592395345367, -0.07606231870919], +[0.03110841611453, -0.07609095707841], +[0.0362926997658, -0.07612481987149], +[0.04147677450307, -0.07616391582278], +[0.04666061039067, -0.07620825501847], +[0.05184417745771, -0.07625784890015], +[0.05702744569447, -0.07631271026875], +[0.06221038504884, -0.07637285328898], +[0.06739296542329, -0.07643829349436], +[0.07257515667198, -0.07650904779261], +[0.07775692859824, -0.07658513447163], +[0.08293825095252, -0.07666657320596], +[0.0881190934306, -0.07675338506379], +[0.09329942567236, -0.07684559251442], +[0.09847921726097, -0.07694321943637], +[0.1036584377226, -0.07704629112589], +[0.1088370565265, -0.07715483430615], +[0.1140150430863, -0.07726887713692], +[0.1191923667606, -0.07738844922483], +[0.124368996856, -0.0775135816342], +[0.1295449026291, -0.07764430689851], +[0.1347200532903, -0.07778065903237], +[0.139894418008, -0.0779226735442], +[0.1450679659137, -0.07807038744942], +[0.1502406661078, -0.07822383928439], +[0.1554124876665, -0.07838306912085], +[0.1605833996491, -0.07854811858109], +[0.1657533711074, -0.07871903085375], +[0.1709223710949, -0.07889585071023], +[0.1760903686775, -0.07907862452182], +[0.181257332946, -0.0792674002775], +[0.1864232330286, -0.07946222760231], +[0.1915880381053, -0.07966315777658], +[0.1967517174239, -0.07987024375559], +[0.2019142403165, -0.08008354019019], +[0.2070755762179, -0.08030310344785], +[0.2122356946857, -0.08052899163453], +[0.217394565421, -0.08076126461719], +[0.2225521582916, -0.08099998404693], +[0.2277084433567, -0.0812452133828], +[0.2328633908925, -0.0814970179163], +[0.2380169714205, -0.08175546479643], +[0.2431691557373, -0.08202062305539], +[0.248319914946, -0.08229256363491], +[0.2534692204901, -0.08257135941306], +[0.2586170441887, -0.08285708523164], +[0.2637633582748, -0.08314981792411], +[0.2689081354348, -0.0834496363439], +[0.2740513488507, -0.08375662139321], +[0.2791929722447, -0.08407085605217], +[0.284332979926, -0.08439242540826], +[0.28947134684, -0.08472141668609], +[0.29460804862, -0.08505791927728], +[0.2997430616421, -0.0854020247705], +[0.3048763630818, -0.0857538269815], +[0.3100079309737, -0.08611342198317], +[0.3151377442746, -0.08648090813533], +[0.3202657829284, -0.08685638611434], +[0.3253920279347, -0.08723995894227], +[0.3305164614201, -0.08763173201558], +[0.3356390667123, -0.08803181313317], +[0.3407598284174, -0.08844031252357], +[0.3458787325004, -0.08885734287121], +[0.3509957663689, -0.08928301934156], +[0.3561109189593, -0.08971745960485], +[0.3612241808266, -0.0901607838584], +[0.3663355442375, -0.0906131148471], +[0.3714450032663, -0.09107457788195], +[0.3765525538937, -0.09154530085639], +[0.381658194109, -0.09202541426013], +[0.3867619240149, -0.09251505119033], +[0.3918637459359, -0.09301434735957], +[0.3969636645282, -0.09352344110068], +[0.4020616868937, -0.09404247336779], +[0.4071578226952, -0.09457158773346], +[0.4122520842749, -0.09511093038144], +[0.4173444867742, -0.09566065009492], +[0.4224350482564, -0.09622089823912], +[0.4275237898296, -0.09679182873978], +[0.4326107357723, -0.09737359805417], +[0.437695913659, -0.09796636513711], +[0.4427793544867, -0.09857029139987], +[0.4478610928021, -0.09918554066221], +[0.4529411668272, -0.09981227909691], +[0.4580196185857, -0.1004506751666], +[0.4630964940266, -0.1011008995523], +[0.4681718431472, -0.1017631250733], +[0.4732457201127, -0.1024375265984], +[0.4783181833725, -0.1031242809475], +[0.483388738711, -0.1038232936622], +[-0.4807385013406, -0.09923304486795], +[-0.4756613663294, -0.09853839997275], +[-0.4705824911691, -0.09785596064788], +[-0.4655023867926, -0.09718575468684], +[-0.4604209963999, -0.09652760980524], +[-0.4553382672578, -0.09588135558926], +[-0.4502541505894, -0.09524682358906], +[-0.4451686014612, -0.09462384740351], +[-0.4400815786685, -0.09401226275658], +[-0.4349930446176, -0.09341190756572], +[-0.4299029652076, -0.09282262200258], +[-0.4248113097116, -0.09224424854638], +[-0.4197180506571, -0.09167663203043], +[-0.4146231637062, -0.09111961968198], +[-0.4095266275376, -0.09057306115598], +[-0.404428423728, -0.09003680856294], +[-0.3993285366354, -0.08951071649131], +[-0.394226953284, -0.08899464202485], +[-0.3891236632503, -0.08848844475517], +[-0.3840186585516, -0.08799198678982], +[-0.3789119335362, -0.08750513275642], +[-0.3738034847765, -0.08702774980291], +[-0.3686933109635, -0.08655970759436], +[-0.3635814128055, -0.08610087830669], +[-0.3584677929275, -0.08565113661739], +[-0.3533524557751, -0.08521035969373], +[-0.3482354075202, -0.08477842717849], +[-0.3431166559695, -0.08435522117373], +[-0.3379962104771, -0.08394062622246], +[-0.3328740818582, -0.08353452928885], +[-0.3277502823071, -0.08313681973674], +[-0.322624825318, -0.08274738930706], +[-0.3174977256077, -0.08236613209398], +[-0.3123689990426, -0.08199294452022], +[-0.3072386625675, -0.0816277253115], +[-0.3021067341375, -0.08127037547035], +[-0.2969732326532, -0.08092079824942], +[-0.2918381778977, -0.08057889912442], +[-0.2867015904773, -0.08024458576664], +[-0.2815634917641, -0.07991776801549], +[-0.2764239038414, -0.07959835785075], +[-0.2712828494516, -0.079286269365], +[-0.266140351947, -0.07898141873598], +[-0.2609964352422, -0.0786837241992], +[-0.2558511237694, -0.07839310602072], +[-0.2507044424359, -0.07810948647019], +[-0.2455564165835, -0.07783278979431], +[-0.2404070719505, -0.07756294219053], +[-0.2352564346354, -0.07729987178124], +[-0.2301045310626, -0.07704350858844], +[-0.2249513879505, -0.07679378450885], +[-0.2197970322808, -0.07655063328953], +[-0.2146414912702, -0.07631399050407], +[-0.2094847923435, -0.07608379352931], +[-0.2043269631087, -0.07585998152269], +[-0.199168031333, -0.07564249540012], +[-0.1940080249214, -0.0754312778145], +[-0.1888469718963, -0.07522627313492], +[-0.1836849003782, -0.07502742742613], +[-0.1785218385682, -0.0748346884294], +[-0.1733578147321, -0.07464800554307], +[-0.1681928571853, -0.07446732980441], +[-0.1630269942788, -0.07429261387181], +[-0.1578602543873, -0.07412381200772], +[-0.152692665897, -0.07396088006212], +[-0.1475242571962, -0.0738037754567], +[-0.1423550566652, -0.07365245716965], +[-0.1371850926687, -0.07350688572092], +[-0.1320143935479, -0.07336702315831], +[-0.1268429876144, -0.07323283304401], +[-0.1216709031447, -0.07310428044177], +[-0.116498168375, -0.07298133190466], +[-0.1113248114978, -0.07286395546337], +[-0.106150860658, -0.07275212061516], +[-0.100976343951, -0.07264579831328], +[-0.0958012894204, -0.07254496095699], +[-0.09062572505672, -0.07244958238211], +[-0.08544967879696, -0.07235963785208], +[-0.08027317852432, -0.07227510404962], +[-0.07509625206858, -0.0721959590688], +[-0.06991892720704, -0.07212218240772], +[-0.0647412316658, -0.07205375496162], +[-0.05956319312154, -0.07199065901651], +[-0.05438483920362, -0.07193287824329], +[-0.04920619749658, -0.07188039769237], +[-0.04402729554299, -0.0718332037887], +[-0.03884816084654, -0.07179128432732], +[-0.0336688208754, -0.0717546284694], +[-0.02848930306591, -0.07172322673864], +[-0.02330963482631, -0.0716970710182], +[-0.01812984354087, -0.07167615454807], +[-0.01294995657394, -0.07166047192289], +[-0.007770001274294, -0.07165001909015], +[-0.002590004979528, -0.07164479334891], +[0.002590004979528, -0.0716447933489], +[0.007770001274294, -0.07165001909015], +[0.01294995657394, -0.07166047192289], +[0.01812984354087, -0.07167615454808], +[0.02330963482631, -0.0716970710182], +[0.0284893030659, -0.07172322673864], +[0.0336688208754, -0.0717546284694], +[0.03884816084654, -0.07179128432732], +[0.04402729554299, -0.0718332037887], +[0.04920619749658, -0.07188039769237], +[0.05438483920362, -0.07193287824329], +[0.05956319312154, -0.07199065901651], +[0.0647412316658, -0.07205375496162], +[0.06991892720704, -0.07212218240772], +[0.07509625206858, -0.0721959590688], +[0.08027317852432, -0.07227510404962], +[0.08544967879696, -0.07235963785208], +[0.09062572505672, -0.07244958238211], +[0.0958012894204, -0.07254496095699], +[0.100976343951, -0.07264579831328], +[0.106150860658, -0.07275212061516], +[0.1113248114978, -0.07286395546337], +[0.116498168375, -0.07298133190466], +[0.1216709031447, -0.07310428044177], +[0.1268429876144, -0.07323283304401], +[0.1320143935479, -0.07336702315831], +[0.1371850926687, -0.07350688572092], +[0.1423550566652, -0.07365245716965], +[0.1475242571962, -0.07380377545672], +[0.152692665897, -0.07396088006212], +[0.1578602543873, -0.07412381200772], +[0.1630269942788, -0.07429261387181], +[0.1681928571853, -0.07446732980441], +[0.1733578147321, -0.07464800554307], +[0.1785218385682, -0.0748346884294], +[0.1836849003782, -0.07502742742613], +[0.1888469718963, -0.07522627313487], +[0.1940080249214, -0.07543127781451], +[0.199168031333, -0.07564249540012], +[0.2043269631087, -0.07585998152269], +[0.2094847923435, -0.07608379352931], +[0.2146414912702, -0.07631399050407], +[0.2197970322808, -0.07655063328953], +[0.2249513879505, -0.07679378450885], +[0.2301045310626, -0.07704350858844], +[0.2352564346354, -0.07729987178124], +[0.2404070719505, -0.07756294219053], +[0.2455564165835, -0.07783278979431], +[0.2507044424359, -0.07810948647019], +[0.2558511237694, -0.07839310602072], +[0.2609964352422, -0.0786837241992], +[0.266140351947, -0.07898141873598], +[0.2712828494516, -0.079286269365], +[0.2764239038414, -0.07959835785075], +[0.2815634917641, -0.07991776801549], +[0.2867015904774, -0.08024458576664], +[0.2918381778977, -0.08057889912442], +[0.2969732326532, -0.08092079824942], +[0.3021067341375, -0.08127037547035], +[0.3072386625675, -0.0816277253115], +[0.3123689990426, -0.08199294452022], +[0.3174977256077, -0.08236613209398], +[0.322624825318, -0.08274738930706], +[0.3277502823071, -0.08313681973674], +[0.3328740818582, -0.08353452928885], +[0.3379962104771, -0.08394062622246], +[0.3431166559695, -0.08435522117373], +[0.3482354075202, -0.08477842717849], +[0.3533524557751, -0.08521035969373], +[0.3584677929275, -0.08565113661739], +[0.3635814128055, -0.08610087830669], +[0.3686933109635, -0.08655970759436], +[0.3738034847765, -0.0870277498029], +[0.3789119335362, -0.08750513275642], +[0.3840186585516, -0.08799198678982], +[0.3891236632503, -0.08848844475517], +[0.394226953284, -0.08899464202485], +[0.3993285366354, -0.08951071649131], +[0.404428423728, -0.09003680856294], +[0.4095266275376, -0.09057306115598], +[0.4146231637062, -0.09111961968198], +[0.4197180506571, -0.09167663203043], +[0.4248113097116, -0.09224424854638], +[0.4299029652076, -0.09282262200258], +[0.4349930446176, -0.09341190756572], +[0.4400815786685, -0.09401226275658], +[0.4451686014612, -0.09462384740351], +[0.4502541505894, -0.09524682358906], +[0.4553382672578, -0.09588135558926], +[0.4604209963999, -0.09652760980523], +[0.4655023867926, -0.09718575468684], +[0.4705824911691, -0.09785596064788], +[0.4756613663294, -0.09853839997276], +[0.4807385013434, -0.09923304489689], +[-0.4780822614972, -0.09463241305382], +[-0.4729988055684, -0.0939422116584], +[-0.467913781445, -0.09326419095468], +[-0.4628277097946, -0.09259828644162], +[-0.4577405353568, -0.09194433019644], +[-0.4526522067294, -0.09130215608965], +[-0.4475626762652, -0.090671599874], +[-0.442471899965, -0.09005249926528], +[-0.4373798373697, -0.08944469401528], +[-0.4322864514493, -0.08884802597736], +[-0.427191708492, -0.08826233916479], +[-0.4220955779914, -0.08768747980229], +[-0.416998032534, -0.08712329637104], +[-0.4118990476865, -0.0865696396476], +[-0.4067986018841, -0.08602636273692], +[-0.4016966763185, -0.08549332110001], +[-0.3965932548279, -0.08497037257634], +[-0.3914883237879, -0.08445737740153], +[-0.3863818720043, -0.08395419822051], +[-0.3812738906069, -0.08346070009653], +[-0.3761643729463, -0.0829767505163], +[-0.3710533144921, -0.08250221939158], +[-0.3659407127335, -0.08203697905749], +[-0.3608265670826, -0.08158090426776], +[-0.3557108787796, -0.08113387218733], +[-0.3505936508014, -0.0806957623824], +[-0.3454748877716, -0.08026645680818], +[-0.3403545958746, -0.0798458397947], +[-0.3352327827713, -0.07943379803072], +[-0.3301094575179, -0.07903022054609], +[-0.324984630488, -0.07863499869262], +[-0.319858313296, -0.0782480261237], +[-0.3147305187252, -0.07786919877292], +[-0.3096012606567, -0.07749841483166], +[-0.3044705540026, -0.07713557472577], +[-0.2993384146402, -0.0767805810925], +[-0.2942048593511, -0.07643333875479], +[-0.2890699057604, -0.07609375469788], +[-0.28393357228, -0.07576173804358], +[-0.2787958780542, -0.0754372000252], +[-0.2736568429074, -0.07512005396216], +[-0.2685164872944, -0.07481021523463], +[-0.2633748322526, -0.07450760125819], +[-0.2582318993576, -0.07421213145857], +[-0.2530877106797, -0.07392372724665], +[-0.2479422887434, -0.07364231199366], +[-0.2427956564884, -0.07336781100658], +[-0.2376478372337, -0.07310015150402], +[-0.232498854642, -0.07283926259239], +[-0.2273487326879, -0.07258507524244], +[-0.2221974956264, -0.07233752226633], +[-0.2170451679639, -0.0720965382951], +[-0.2118917744314, -0.07186205975667], +[-0.206737339958, -0.07163402485433], +[-0.2015818896474, -0.07141237354577], +[-0.1964254487554, -0.07119704752265], +[-0.1912680426687, -0.07098799019074], +[-0.1861096968855, -0.07078514665061], +[-0.1809504369973, -0.0705884636789], +[-0.1757902886722, -0.07039788971018], +[-0.1706292776391, -0.07021337481939], +[-0.165467429674, -0.07003487070484], +[-0.1603047705861, -0.06986233067185], +[-0.1551413262067, -0.06969570961691], +[-0.1499771223777, -0.06953496401246], +[-0.1448121849421, -0.0693800518923], +[-0.1396465397349, -0.06923093283743], +[-0.1344802125758, -0.0690875679626], +[-0.1293132292615, -0.06894991990339], +[-0.1241456155603, -0.06881795280383], +[-0.1189773972063, -0.06869163230453], +[-0.1138085998952, -0.06857092553149], +[-0.1086392492807, -0.06845580108527], +[-0.1034693709712, -0.06834622903087], +[-0.09829899052747, -0.06824218088797], +[-0.09312813346128, -0.06814362962179], +[-0.08795682523396, -0.06805054963445], +[-0.08278509125597, -0.06796291675677], +[-0.07761295688692, -0.06788070824063], +[-0.07244044743603, -0.06780390275174], +[-0.06726758816307, -0.06773248036296], +[-0.06209440427978, -0.06766642254806], +[-0.05692092095165, -0.06760571217593], +[-0.05174716330005, -0.06755033350524], +[-0.04657315640477, -0.06750027217959], +[-0.04139892530681, -0.06745551522309], +[-0.03622449501145, -0.06741605103631], +[-0.03104989049161, -0.06738186939281], +[-0.02587513669143, -0.06735296143595], +[-0.02070025852999, -0.06732931967618], +[-0.01552528090525, -0.06731093798881], +[-0.01035022869811, -0.06729781161212], +[-0.00517512677657, -0.06728993714589], +[-9.554007360407e-17, -0.06728731255043], +[0.00517512677657, -0.06728993714589], +[0.01035022869811, -0.06729781161212], +[0.01552528090525, -0.06731093798881], +[0.02070025852999, -0.06732931967618], +[0.02587513669143, -0.06735296143595], +[0.03104989049161, -0.06738186939282], +[0.03622449501145, -0.06741605103631], +[0.04139892530681, -0.06745551522308], +[0.04657315640477, -0.06750027217959], +[0.05174716330005, -0.06755033350524], +[0.05692092095164, -0.06760571217593], +[0.06209440427978, -0.06766642254806], +[0.06726758816307, -0.06773248036296], +[0.07244044743603, -0.06780390275174], +[0.07761295688692, -0.06788070824063], +[0.08278509125597, -0.06796291675677], +[0.08795682523396, -0.06805054963445], +[0.09312813346128, -0.06814362962179], +[0.09829899052747, -0.06824218088797], +[0.1034693709712, -0.06834622903087], +[0.1086392492807, -0.06845580108527], +[0.1138085998952, -0.06857092553149], +[0.1189773972063, -0.06869163230453], +[0.1241456155603, -0.06881795280383], +[0.1293132292615, -0.06894991990339], +[0.1344802125758, -0.0690875679626], +[0.1396465397349, -0.06923093283743], +[0.1448121849421, -0.0693800518923], +[0.1499771223777, -0.06953496401246], +[0.1551413262067, -0.06969570961691], +[0.1603047705861, -0.06986233067185], +[0.165467429674, -0.07003487070484], +[0.1706292776391, -0.07021337481939], +[0.1757902886722, -0.07039788971018], +[0.1809504369973, -0.0705884636789], +[0.1861096968855, -0.07078514665061], +[0.1912680426687, -0.07098799019074], +[0.1964254487554, -0.07119704752265], +[0.2015818896474, -0.07141237354577], +[0.206737339958, -0.07163402485433], +[0.2118917744314, -0.07186205975667], +[0.2170451679639, -0.0720965382951], +[0.2221974956264, -0.07233752226633], +[0.2273487326879, -0.07258507524245], +[0.232498854642, -0.07283926259239], +[0.2376478372337, -0.07310015150402], +[0.2427956564884, -0.07336781100658], +[0.2479422887434, -0.07364231199366], +[0.2530877106797, -0.07392372724665], +[0.2582318993576, -0.07421213145857], +[0.2633748322526, -0.07450760125819], +[0.2685164872944, -0.07481021523463], +[0.2736568429074, -0.07512005396216], +[0.2787958780542, -0.0754372000252], +[0.28393357228, -0.07576173804358], +[0.2890699057604, -0.07609375469788], +[0.2942048593511, -0.07643333875479], +[0.2993384146402, -0.0767805810925], +[0.3044705540025, -0.07713557472595], +[0.3096012606567, -0.07749841483166], +[0.3147305187252, -0.07786919877292], +[0.319858313296, -0.0782480261237], +[0.324984630488, -0.07863499869262], +[0.3301094575179, -0.07903022054609], +[0.3352327827713, -0.07943379803072], +[0.3403545958746, -0.0798458397947], +[0.3454748877716, -0.08026645680818], +[0.3505936508014, -0.0806957623824], +[0.3557108787796, -0.08113387218733], +[0.3608265670826, -0.08158090426776], +[0.3659407127335, -0.08203697905749], +[0.3710533144921, -0.08250221939158], +[0.3761643729463, -0.0829767505163], +[0.3812738906069, -0.08346070009653], +[0.3863818720043, -0.08395419822051], +[0.3914883237879, -0.08445737740153], +[0.3965932548279, -0.08497037257634], +[0.4016966763185, -0.08549332110001], +[0.4067986018841, -0.08602636273692], +[0.4118990476865, -0.0865696396476], +[0.416998032534, -0.08712329637104], +[0.4220955779914, -0.08768747980229], +[0.427191708492, -0.08826233916479], +[0.4322864514493, -0.08884802597736], +[0.4373798373697, -0.08944469401528], +[0.442471899965, -0.09005249926528], +[0.4475626762652, -0.090671599874], +[0.4526522067294, -0.09130215608965], +[0.4577405353568, -0.09194433019644], +[0.4628277097946, -0.09259828644162], +[0.467913781445, -0.09326419095468], +[0.4729988055684, -0.0939422116584], +[0.4780822615003, -0.09463241308305], +[-0.4754201523261, -0.0900216306936], +[-0.4703306273561, -0.08933594102581], +[-0.4652397126214, -0.08866244064999], +[-0.460147929338, -0.08800094146538], +[-0.4550552236783, -0.08735127974485], +[-0.4499615454741, -0.08671329348046], +[-0.4448668481192, -0.08608682246818], +[-0.4397710884693, -0.08547170838496], +[-0.4346742267393, -0.08486779485866], +[-0.4295762263994, -0.0842749275309], +[-0.4244770540701, -0.0836929541132], +[-0.4193766794162, -0.08312172443754], +[-0.4142750750402, -0.08256109049632], +[-0.4091722163768, -0.0820109064877], +[-0.4040680815861, -0.08147102884067], +[-0.3989626514492, -0.0809413162461], +[-0.3938559092634, -0.08042162967845], +[-0.3887478407396, -0.07991183241379], +[-0.3836384339004, -0.07941179004354], +[-0.3785276789801, -0.07892137048427], +[-0.373415568327, -0.0784404439839], +[-0.3683020963064, -0.07796888312445], +[-0.3631872592073, -0.07750656282178], +[-0.3580710551501, -0.07705336032237], +[-0.3529534839969, -0.07660915519755], +[-0.3478345472646, -0.07617382933536], +[-0.34271424804, -0.07574726693015], +[-0.3375925908974, -0.07532935447058], +[-0.3324695818194, -0.07491998072513], +[-0.3273452281189, -0.07451903672701], +[-0.3222195383652, -0.07412641575693], +[-0.3170925223118, -0.07374201332507], +[-0.3119641908268, -0.07336572715179], +[-0.306834555826, -0.07299745714752], +[-0.3017036302091, -0.07263710539189], +[-0.2965714277971, -0.07228457611215], +[-0.2914379632733, -0.07193977566112], +[-0.2863032521266, -0.0716026124947], +[-0.2811673105969, -0.07127299714907], +[-0.2760301556227, -0.07095084221766], +[-0.2708918047917, -0.07063606232799], +[-0.2657522762931, -0.0703285741185], +[-0.2606115888721, -0.07002829621531], +[-0.2554697617872, -0.06973514920911], +[-0.2503268147689, -0.06944905563223], +[-0.2451827679806, -0.06916993993585], +[-0.2400376419819, -0.06889772846747], +[-0.2348914576934, -0.06863234944868], +[-0.2297442363638, -0.06837373295328], +[-0.224595999538, -0.06812181088571], +[-0.2194467690284, -0.06787651695995], +[-0.2142965668865, -0.06763778667877], +[-0.2091454153767, -0.06740555731348], +[-0.2039933369522, -0.06717976788411], +[-0.1988403542317, -0.06696035914014], +[-0.1936864899778, -0.06674727354162], +[-0.1885317670772, -0.06654045524098], +[-0.1833762085218, -0.06633985006497], +[-0.1782198373914, -0.06614540549787], +[-0.173062676838, -0.06595707066438], +[-0.1679047500703, -0.06577479631357], +[-0.1627460803409, -0.06559853480329], +[-0.1575866909332, -0.06542824008505], +[-0.1524266051502, -0.06526386768943], +[-0.1472658463042, -0.06510537471215], +[-0.1421044377077, -0.06495271980053], +[-0.1369424026645, -0.06480586314059], +[-0.1317797644629, -0.06466476644467], +[-0.1266165463685, -0.06452939293948], +[-0.121452771619, -0.06439970735482], +[-0.1162884634189, -0.06427567591267], +[-0.1111236449356, -0.0641572663169], +[-0.1059583392957, -0.06404444774341], +[-0.1007925695825, -0.06393719083082], +[-0.09562635883353, -0.06383546767157], +[-0.09045973003939, -0.06373925180355], +[-0.08529270614261, -0.06364851820226], +[-0.08012531003733, -0.06356324327329], +[-0.07495756456937, -0.0634834048454], +[-0.06978949253689, -0.06340898216395], +[-0.0646211166914, -0.06333995588485], +[-0.05945245973919, -0.06327630806889], +[-0.05428354434324, -0.06321802217657], +[-0.04911439312532, -0.06316508306324], +[-0.04394502866859, -0.06311747697478], +[-0.03877547352034, -0.06307519154366], +[-0.03360575019511, -0.06303821578534], +[-0.02843588117795, -0.0630065400952], +[-0.023265888928, -0.06298015624573], +[-0.01809579588208, -0.06295905738426], +[-0.01292562445865, -0.06294323803096], +[-0.007755397061683, -0.06293269407734], +[-0.002585136084767, -0.06292742278502], +[0.002585136084767, -0.06292742278502], +[0.007755397061683, -0.06293269407734], +[0.01292562445865, -0.06294323803097], +[0.01809579588208, -0.06295905738426], +[0.023265888928, -0.06298015624573], +[0.02843588117795, -0.0630065400952], +[0.03360575019511, -0.06303821578534], +[0.03877547352034, -0.06307519154366], +[0.04394502866859, -0.06311747697478], +[0.04911439312532, -0.06316508306324], +[0.05428354434324, -0.06321802217657], +[0.05945245973919, -0.06327630806889], +[0.0646211166914, -0.06333995588485], +[0.06978949253689, -0.06340898216395], +[0.07495756456937, -0.0634834048454], +[0.08012531003733, -0.06356324327329], +[0.08529270614261, -0.06364851820226], +[0.09045973003939, -0.06373925180355], +[0.09562635883353, -0.06383546767157], +[0.1007925695825, -0.06393719083082], +[0.1059583392957, -0.06404444774342], +[0.1111236449356, -0.0641572663169], +[0.1162884634189, -0.06427567591267], +[0.121452771619, -0.06439970735482], +[0.1266165463685, -0.06452939293949], +[0.1317797644629, -0.06466476644467], +[0.1369424026645, -0.0648058631406], +[0.1421044377077, -0.06495271980053], +[0.1472658463042, -0.06510537471215], +[0.1524266051502, -0.06526386768941], +[0.1575866909332, -0.06542824008505], +[0.1627460803409, -0.06559853480329], +[0.1679047500703, -0.06577479631357], +[0.173062676838, -0.06595707066438], +[0.1782198373914, -0.06614540549787], +[0.1833762085218, -0.06633985006497], +[0.1885317670772, -0.06654045524093], +[0.1936864899778, -0.06674727354162], +[0.1988403542317, -0.06696035914014], +[0.2039933369522, -0.06717976788411], +[0.2091454153767, -0.06740555731348], +[0.2142965668865, -0.06763778667877], +[0.2194467690284, -0.06787651695995], +[0.224595999538, -0.06812181088571], +[0.2297442363638, -0.06837373295328], +[0.2348914576934, -0.06863234944868], +[0.2400376419819, -0.06889772846747], +[0.2451827679806, -0.06916993993585], +[0.2503268147689, -0.06944905563223], +[0.2554697617872, -0.06973514920911], +[0.2606115888721, -0.07002829621531], +[0.2657522762931, -0.0703285741185], +[0.2708918047917, -0.07063606232799], +[0.2760301556227, -0.07095084221766], +[0.2811673105969, -0.07127299714907], +[0.2863032521266, -0.0716026124947], +[0.2914379632733, -0.07193977566112], +[0.2965714277971, -0.07228457611215], +[0.3017036302091, -0.07263710539189], +[0.306834555826, -0.07299745714752], +[0.3119641908268, -0.07336572715178], +[0.3170925223118, -0.07374201332507], +[0.3222195383652, -0.07412641575693], +[0.3273452281189, -0.07451903672701], +[0.3324695818194, -0.07491998072513], +[0.3375925908974, -0.07532935447058], +[0.3427142480399, -0.07574726693047], +[0.3478345472646, -0.07617382933536], +[0.3529534839969, -0.07660915519755], +[0.3580710551501, -0.07705336032237], +[0.3631872592073, -0.07750656282178], +[0.3683020963064, -0.07796888312445], +[0.373415568327, -0.0784404439839], +[0.3785276789801, -0.07892137048427], +[0.3836384339004, -0.07941179004354], +[0.3887478407396, -0.07991183241379], +[0.3938559092634, -0.08042162967845], +[0.3989626514492, -0.0809413162461], +[0.4040680815861, -0.08147102884067], +[0.4091722163768, -0.0820109064877], +[0.4142750750402, -0.08256109049632], +[0.4193766794162, -0.08312172443669], +[0.4244770540701, -0.0836929541132], +[0.4295762263994, -0.0842749275309], +[0.4346742267393, -0.08486779485866], +[0.4397710884693, -0.08547170838496], +[0.4448668481192, -0.08608682246818], +[0.4499615454741, -0.08671329348046], +[0.4550552236783, -0.08735127974485], +[0.460147929338, -0.08800094146538], +[0.4652397126214, -0.08866244064999], +[0.4703306273561, -0.08933594102581], +[0.4754207309724, -0.09002160769071], +[-0.472752343207, -0.08540039181446], +[-0.4676569561789, -0.08471980971904], +[-0.4625604047795, -0.08405092952295], +[-0.4574631611822, -0.08339393758427], +[-0.4523651728889, -0.08274867421308], +[-0.447266390871, -0.08211498136745], +[-0.4421667694776, -0.08149270273412], +[-0.437066266341, -0.08088168380235], +[-0.4319648422803, -0.08028177193078], +[-0.4268624612031, -0.07969281640786], +[-0.4217590900064, -0.07911466850599], +[-0.4166546984767, -0.07854718152965], +[-0.4115492591898, -0.07799021085786], +[-0.4064427474102, -0.07744361398121], +[-0.4013351409918, -0.07690725053375], +[-0.3962264202778, -0.07638098232014], +[-0.3911165680027, -0.0758646733381], +[-0.3860055691946, -0.07535818979676], +[-0.3808934110793, -0.07486140013092], +[-0.3757800829858, -0.07437417501163], +[-0.3706655762532, -0.07389638735334], +[-0.3655498841395, -0.07342791231783], +[-0.3604330017327, -0.07296862731515], +[-0.3553149258637, -0.072518412002], +[-0.3501956550211, -0.07207714827741], +[-0.3450751892688, -0.07164472027635], +[-0.3399535301652, -0.07122101436113], +[-0.3348306806854, -0.07080591911107], +[-0.3297066451451, -0.07039932531038], +[-0.3245814291277, -0.07000112593459], +[-0.319455039413, -0.06961121613569], +[-0.3143274839091, -0.06922949322601], +[-0.3091987715858, -0.06885585666114], +[-0.3040689124113, -0.06849020802196], +[-0.2989379172908, -0.06813245099582], +[-0.2938057980076, -0.06778249135725], +[-0.2886725671667, -0.06744023694795], +[-0.2835382381402, -0.06710559765654], +[-0.2784028250156, -0.06677848539783], +[-0.2732663425462, -0.06645881409199], +[-0.2681288061032, -0.06614649964343], +[-0.2629902316307, -0.06584145991973], +[-0.2578506356021, -0.06554361473048], +[-0.2527100349794, -0.06525288580618], +[-0.2475684471734, -0.06496919677731], +[-0.242425890007, -0.06469247315348], +[-0.2372823816794, -0.06442264230286], +[-0.2321379407331, -0.06415963343185], +[-0.2269925860219, -0.06390337756496], +[-0.2218463366811, -0.06365380752519], +[-0.2166992120994, -0.06341085791456], +[-0.2115512318919, -0.06317446509518], +[-0.2064024158756, -0.06294456717066], +[-0.2012527840458, -0.06272110396795], +[-0.1961023565538, -0.0625040170196], +[-0.1909511536869, -0.06229324954652], +[-0.1857991958487, -0.0620887464413], +[-0.1806465035419, -0.06189045425163], +[-0.1754930973511, -0.06169832116476], +[-0.1703389979281, -0.06151229699205], +[-0.1651842259774, -0.06133233315413], +[-0.1600288022433, -0.06115838266659], +[-0.1548727474982, -0.06099040012616], +[-0.1497160825318, -0.06082834169737], +[-0.1445588281411, -0.06067216509971], +[-0.1394010051216, -0.06052182959533], +[-0.1342426342597, -0.06037729597717], +[-0.1290837363252, -0.06023852655766], +[-0.1239243320656, -0.06010548515783], +[-0.1187644422004, -0.05997813709692], +[-0.1136040874166, -0.05985644918254], +[-0.108443288365, -0.0597403897012], +[-0.1032820656567, -0.05962992840935], +[-0.09812043986079, -0.05952503652489], +[-0.09295843150248, -0.05942568671912], +[-0.08779606106169, -0.05933185310911], +[-0.08263334897232, -0.05924351125056], +[-0.07747031562204, -0.05916063813103], +[-0.07230698135253, -0.05908321216368], +[-0.0671433664602, -0.05901121318131], +[-0.06197949119733, -0.05894462243094], +[-0.05681537577358, -0.0588834225687], +[-0.05165104035791, -0.05882759765517], +[-0.04648650508082, -0.0587771331511], +[-0.04132179003686, -0.05873201591353], +[-0.03615691528745, -0.05869223419228], +[-0.03099190086397, -0.05865777762683], +[-0.025826766771, -0.05862863724359], +[-0.02066153298982, -0.05860480545348], +[-0.01549621948204, -0.05858627605002], +[-0.01033084619336, -0.0585730442076], +[-0.005165433057473, -0.05856510648028], +[-9.554007360407e-17, -0.05856246080084], +[0.005165433057473, -0.05856510648028], +[0.01033084619336, -0.0585730442076], +[0.01549621948204, -0.05858627605002], +[0.02066153298982, -0.05860480545348], +[0.025826766771, -0.05862863724358], +[0.03099190086397, -0.05865777762683], +[0.03615691528745, -0.05869223419228], +[0.04132179003686, -0.05873201591353], +[0.04648650508082, -0.0587771331511], +[0.05165104035792, -0.05882759765517], +[0.05681537577358, -0.0588834225687], +[0.06197949119733, -0.05894462243094], +[0.06714336646021, -0.05901121318131], +[0.07230698135253, -0.05908321216368], +[0.07747031562204, -0.05916063813103], +[0.08263334897232, -0.05924351125056], +[0.08779606106169, -0.05933185310911], +[0.09295843150248, -0.05942568671912], +[0.09812043986079, -0.05952503652489], +[0.1032820656567, -0.05962992840935], +[0.108443288365, -0.0597403897012], +[0.1136040874166, -0.05985644918255], +[0.1187644422004, -0.05997813709692], +[0.1239243320656, -0.06010548515783], +[0.1290837363252, -0.06023852655766], +[0.1342426342597, -0.06037729597717], +[0.1394010051216, -0.06052182959533], +[0.1445588281411, -0.06067216509971], +[0.1497160825318, -0.06082834169737], +[0.1548727474982, -0.06099040012616], +[0.1600288022433, -0.06115838266659], +[0.1651842259774, -0.06133233315413], +[0.1703389979281, -0.06151229699205], +[0.1754930973511, -0.06169832116476], +[0.1806465035419, -0.06189045425163], +[0.1857991958487, -0.0620887464413], +[0.1909511536868, -0.06229324954656], +[0.1961023565538, -0.0625040170196], +[0.2012527840458, -0.06272110396795], +[0.2064024158756, -0.06294456717066], +[0.2115512318919, -0.06317446509518], +[0.2166992120994, -0.06341085791456], +[0.2218463366811, -0.06365380752519], +[0.2269925860219, -0.06390337756496], +[0.2321379407331, -0.06415963343185], +[0.2372823816794, -0.06442264230286], +[0.242425890007, -0.06469247315348], +[0.2475684471734, -0.06496919677731], +[0.2527100349794, -0.06525288580618], +[0.2578506356021, -0.06554361473048], +[0.2629902316307, -0.06584145991973], +[0.2681288061032, -0.06614649964343], +[0.2732663425462, -0.06645881409199], +[0.2784028250156, -0.06677848539783], +[0.2835382381402, -0.06710559765654], +[0.2886725671667, -0.06744023694795], +[0.2938057980076, -0.06778249135725], +[0.2989379172908, -0.06813245099582], +[0.3040689124113, -0.06849020802196], +[0.3091987715858, -0.06885585666114], +[0.3143274839091, -0.06922949322601], +[0.319455039413, -0.06961121613569], +[0.3245814291277, -0.07000112593459], +[0.3297066451451, -0.07039932531038], +[0.3348306806854, -0.07080591911107], +[0.3399535301652, -0.07122101436113], +[0.3450751892688, -0.07164472027635], +[0.3501956550211, -0.07207714827741], +[0.3553149258637, -0.072518412002], +[0.3604330017327, -0.07296862731515], +[0.3655498841395, -0.07342791231783], +[0.3706655762532, -0.07389638735334], +[0.3757800829858, -0.07437417501163], +[0.3808934110793, -0.07486140013092], +[0.3860055691946, -0.07535818979676], +[0.3911165680027, -0.0758646733381], +[0.3962264202778, -0.07638098232014], +[0.4013351409918, -0.07690725053375], +[0.4064427474102, -0.07744361398121], +[0.4115492591898, -0.07799021085786], +[0.4166546984767, -0.07854718152965], +[0.4217590900064, -0.07911466850599], +[0.4268624612031, -0.07969281640786], +[0.4319648422803, -0.08028177193078], +[0.437066266341, -0.08088168380235], +[0.4421667694776, -0.08149270273412], +[0.447266390871, -0.08211498136745], +[0.4523651728889, -0.08274867421308], +[0.4574631611822, -0.08339393758427], +[0.4625604047795, -0.08405092952295], +[0.4676569561789, -0.08471980971904], +[0.47275234321, -0.08540039183654], +[-0.4700788256316, -0.0807698920964], +[-0.4649779148189, -0.08009403615282], +[-0.4598759764676, -0.07942987416631], +[-0.4547735197194, -0.07877748946595], +[-0.4496704933057, -0.07813672624756], +[-0.4445668492458, -0.07750743028633], +[-0.4394625427607, -0.07688944901402], +[-0.4343575321834, -0.07628263158953], +[-0.4292517788681, -0.07568682896315], +[-0.424145247098, -0.07510189393461], +[-0.4190379039915, -0.07452768120537], +[-0.4139297194076, -0.07396404742526], +[-0.4088206658521, -0.0734108512337], +[-0.403710718382, -0.072867953296], +[-0.3985998545118, -0.07233521633469], +[-0.3934880541194, -0.0718125051564], +[-0.3883752993531, -0.07129968667445], +[-0.3832615745392, -0.07079662992742], +[-0.3781468660918, -0.07030320609395], +[-0.3730311624225, -0.06981928850403], +[-0.3679144538532, -0.06934475264707], +[-0.3627967325293, -0.06887947617689], +[-0.3576779923358, -0.06842333891397], +[-0.3525582288139, -0.06797622284507], +[-0.3474374390816, -0.06753801212052], +[-0.342315621754, -0.06710859304935], +[-0.337192776868, -0.06668785409246], +[-0.3320689058075, -0.06627568585394], +[-0.3269440112319, -0.06587198107093], +[-0.3218180970058, -0.06547663460187], +[-0.3166911681325, -0.06508954341357], +[-0.311563230688, -0.06471060656716], +[-0.3064342917585, -0.06433972520293], +[-0.3013043593801, -0.06397680252443], +[-0.2961734424799, -0.06362174378175], +[-0.2910415508202, -0.06327445625421], +[-0.2859086949447, -0.06293484923247], +[-0.2807748861267, -0.06260283400031], +[-0.2756401363197, -0.06227832381594], +[-0.2705044581097, -0.06196123389324], +[-0.2653678646703, -0.06165148138262], +[-0.260230369719, -0.06134898535199], +[-0.2550919874765, -0.0610536667675], +[-0.2499527326268, -0.06076544847449], +[-0.24481262028, -0.0604842551784], +[-0.2396716659369, -0.06021001342583], +[-0.2345298854554, -0.05994265158584], +[-0.2293872950181, -0.05968209983138], +[-0.2242439111024, -0.05942829012108], +[-0.219099750452, -0.05918115618119], +[-0.2139548300497, -0.058940633488], +[-0.2088091670922, -0.05870665925047], +[-0.2036627789663, -0.05847917239329], +[-0.1985156832263, -0.0582581135403], +[-0.1933678975735, -0.05804342499837], +[-0.188219439836, -0.05783505074156], +[-0.1830703279509, -0.0576329363959], +[-0.1779205799472, -0.05743702922444], +[-0.1727702139302, -0.05724727811283], +[-0.1676192480667, -0.05706363355533], +[-0.1624677005717, -0.0568860476413], +[-0.1573155896962, -0.05671447404214], +[-0.1521629337158, -0.05654886799861], +[-0.1470097509206, -0.05638918630879], +[-0.141856059606, -0.0562353873163], +[-0.136701878064, -0.05608743089915], +[-0.1315472245761, -0.05594527845892], +[-0.1263921174067, -0.05580889291046], +[-0.1212365747972, -0.05567823867203], +[-0.1160806149609, -0.05555328165586], +[-0.1109242560792, -0.05543398925919], +[-0.1057675162973, -0.05532033035573], +[-0.1006104137221, -0.0552122752875], +[-0.09545296641937, -0.05510979585717], +[-0.0902951924122, -0.05501286532078], +[-0.08513710968013, -0.05492145838086], +[-0.07997873615835, -0.05483555117999], +[-0.07482008973772, -0.0547551212947], +[-0.06966118826516, -0.05468014772983], +[-0.06450204954445, -0.05461061091326], +[-0.05934269133753, -0.05454649269096], +[-0.05418313136607, -0.05448777632251], +[-0.04902338731346, -0.05443444647691], +[-0.04386347682707, -0.05438648922881], +[-0.03870341752083, -0.05434389205507], +[-0.03354322697807, -0.05430664383169], +[-0.02838292275456, -0.05427473483108], +[-0.02322252238179, -0.05424815671969], +[-0.01806204337039, -0.05422690255598], +[-0.01290150321374, -0.05421096678875], +[-0.007740919391667, -0.05420034525576], +[-0.002580309374264, -0.05419503518275], +[0.002580309374264, -0.05419503518274], +[0.007740919391667, -0.05420034525576], +[0.01290150321374, -0.05421096678875], +[0.01806204337039, -0.05422690255598], +[0.02322252238179, -0.05424815671969], +[0.02838292275456, -0.05427473483108], +[0.03354322697807, -0.05430664383169], +[0.03870341752083, -0.05434389205507], +[0.04386347682707, -0.05438648922881], +[0.04902338731346, -0.05443444647691], +[0.05418313136608, -0.05448777632251], +[0.05934269133753, -0.05454649269096], +[0.06450204954445, -0.05461061091326], +[0.06966118826516, -0.05468014772983], +[0.07482008973773, -0.05475512129469], +[0.07997873615835, -0.05483555117999], +[0.08513710968013, -0.05492145838086], +[0.0902951924122, -0.05501286532078], +[0.09545296641937, -0.05510979585717], +[0.1006104137221, -0.0552122752875], +[0.1057675162974, -0.05532033035573], +[0.1109242560792, -0.05543398925919], +[0.1160806149609, -0.05555328165586], +[0.1212365747972, -0.05567823867203], +[0.1263921174067, -0.05580889291046], +[0.1315472245761, -0.05594527845892], +[0.136701878064, -0.05608743089915], +[0.141856059606, -0.0562353873163], +[0.1470097509206, -0.05638918630879], +[0.1521629337158, -0.05654886799861], +[0.1573155896962, -0.05671447404214], +[0.1624677005717, -0.0568860476413], +[0.1676192480667, -0.05706363355533], +[0.1727702139302, -0.05724727811283], +[0.1779205799472, -0.05743702922444], +[0.1830703279509, -0.0576329363959], +[0.188219439836, -0.05783505074156], +[0.1933678975735, -0.05804342499837], +[0.1985156832263, -0.0582581135403], +[0.2036627789663, -0.05847917239328], +[0.2088091670922, -0.05870665925047], +[0.2139548300497, -0.058940633488], +[0.219099750452, -0.05918115618119], +[0.2242439111024, -0.05942829012108], +[0.2293872950181, -0.05968209983138], +[0.2345298854554, -0.05994265158584], +[0.2396716659369, -0.06021001342583], +[0.24481262028, -0.0604842551784], +[0.2499527326268, -0.06076544847449], +[0.2550919874765, -0.0610536667675], +[0.260230369719, -0.06134898535199], +[0.2653678646703, -0.06165148138262], +[0.2705044581097, -0.06196123389324], +[0.2756401363197, -0.06227832381594], +[0.2807748861267, -0.06260283400031], +[0.2859086949447, -0.06293484923247], +[0.2910415508202, -0.06327445625421], +[0.2961734424799, -0.06362174378175], +[0.3013043593801, -0.06397680252443], +[0.3064342917585, -0.06433972520293], +[0.311563230688, -0.06471060656716], +[0.3166911681325, -0.06508954341357], +[0.3218180970058, -0.06547663460186], +[0.3269440112319, -0.06587198107093], +[0.3320689058075, -0.06627568585394], +[0.337192776868, -0.06668785409246], +[0.342315621754, -0.06710859304935], +[0.3474374390816, -0.06753801212052], +[0.3525582288139, -0.06797622284507], +[0.3576779923358, -0.06842333891397], +[0.3627967325293, -0.06887947617689], +[0.3679144538532, -0.06934475264707], +[0.3730311624225, -0.06981928850403], +[0.3781468660918, -0.07030320609395], +[0.3832615745392, -0.07079662992742], +[0.3883752993531, -0.07129968667445], +[0.3934880541194, -0.0718125051564], +[0.3985998545118, -0.07233521633469], +[0.403710718382, -0.072867953296], +[0.4088206658521, -0.0734108512337], +[0.4139297194076, -0.07396404742526], +[0.4190379039915, -0.07452768120537], +[0.424145247098, -0.07510189393461], +[0.4292517788681, -0.07568682896315], +[0.4343575321834, -0.07628263158953], +[0.4394625427607, -0.07688944901402], +[0.4445668492458, -0.07750743028633], +[0.4496704933057, -0.07813672624756], +[0.4547735197194, -0.07877748946595], +[0.4598759764676, -0.07942987416631], +[0.4649779148189, -0.08009403615282], +[0.470078825635, -0.08076989212002], +[-0.4673998366038, -0.07612996554815], +[-0.462293624427, -0.07545883565277], +[-0.4571865447648, -0.07479948811501], +[-0.4520791180295, -0.07415180875536], +[-0.4469712940851, -0.07351564551151], +[-0.4418630259102, -0.0728908478329], +[-0.4367542695157, -0.07227726675657], +[-0.4316449838611, -0.07167475497441], +[-0.4265351307687, -0.07108316689485], +[-0.4214246748361, -0.07050235869885], +[-0.4163135833483, -0.06993218839039], +[-0.4112018261885, -0.06937251584171], +[-0.4060893757486, -0.06882320283348], +[-0.4009762068404, -0.06828411309029], +[-0.3958622966061, -0.06775511231158], +[-0.3907476244294, -0.06723606819824], +[-0.3856321718483, -0.06672685047534], +[-0.3805159224673, -0.06622733091087], +[-0.3753988618718, -0.06573738333113], +[-0.3702809775436, -0.06525688363267], +[-0.3651622587774, -0.06478570979122], +[-0.3600426965992, -0.06432374186773], +[-0.3549222836866, -0.06387086201174], +[-0.3498010142899, -0.06342695446235], +[-0.3446788841567, -0.06299190554693], +[-0.3395558904566, -0.06256560367772], +[-0.3344320317094, -0.06214793934664], +[-0.3293073077144, -0.0617388051183], +[-0.3241817194821, -0.0613380956216], +[-0.3190552691683, -0.06094570753976], +[-0.3139279600098, -0.06056153959932], +[-0.3087997962627, -0.06018549255789], +[-0.3036707831422, -0.05981746919097], +[-0.2985409267655, -0.059457374278], +[-0.293410234096, -0.05910511458755], +[-0.2882787128902, -0.05876059886202], +[-0.283146371646, -0.05842373780171], +[-0.2780132195537, -0.05809444404854], +[-0.2728792664491, -0.05777263216941], +[-0.2677445227677, -0.05745821863941], +[-0.2626089995025, -0.05715112182398], +[-0.2574727081615, -0.05685126196323], +[-0.2523356607295, -0.05655856115315], +[-0.2471978696301, -0.05627294332906], +[-0.2420593476902, -0.05599433424833], +[-0.2369201081058, -0.05572266147322], +[-0.2317801644104, -0.05545785435392], +[-0.226639530444, -0.05519984401182], +[-0.2214982203249, -0.05494856332291], +[-0.2163562484217, -0.05470394690155], +[-0.2112136293284, -0.05446593108436], +[-0.2060703778396, -0.0542344539146], +[-0.2009265089282, -0.05400945512676], +[-0.195782037724, -0.0537908761315], +[-0.1906369794935, -0.053578660001], +[-0.1854913496216, -0.05337275145469], +[-0.1803451635941, -0.05317309684531], +[-0.1751984369816, -0.05297964414542], +[-0.1700511854245, -0.05279234293431], +[-0.1649034246192, -0.05261114438528], +[-0.1597551703056, -0.05243600125345], +[-0.154606438255, -0.05226686786382], +[-0.1494572442599, -0.05210370009992], +[-0.1443076041243, -0.05194645539276], +[-0.1391575336546, -0.0517950927103], +[-0.1340070486522, -0.05164957254723], +[-0.1288561649063, -0.0515098569153], +[-0.1237048981877, -0.05137590933394], +[-0.1185532642437, -0.05124769482142], +[-0.113401278793, -0.05112517988624], +[-0.1082489575224, -0.05100833251917], +[-0.1030963160828, -0.05089712218546], +[-0.09794337008733, -0.05079151981755], +[-0.09279013510887, -0.05069149780818], +[-0.08763662667878, -0.05059703000386], +[-0.08248286028601, -0.05050809169869], +[-0.07732885137673, -0.0504246596286], +[-0.0721746153544, -0.05034671196592], +[-0.06702016758034, -0.05027422831434], +[-0.06186552337469, -0.05020718970421], +[-0.05671069801777, -0.05014557858817], +[-0.05155570675176, -0.05008937883716], +[-0.04640056478277, -0.05003857573676], +[-0.04124528728317, -0.04999315598385], +[-0.03608988939417, -0.0499531076836], +[-0.03093438622871, -0.04991842034682], +[-0.02577879287452, -0.04988908488761], +[-0.02062312439735, -0.04986509362129], +[-0.0154673958444, -0.04984644026274], +[-0.01031162224788, -0.04983311992499], +[-0.005155818628663, -0.04982512911809], +[0, -0.0498224657484], +[0.005155818628663, -0.04982512911809], +[0.01031162224788, -0.04983311992499], +[0.0154673958444, -0.04984644026275], +[0.02062312439735, -0.04986509362129], +[0.02577879287452, -0.04988908488761], +[0.03093438622871, -0.04991842034682], +[0.03608988939417, -0.0499531076836], +[0.04124528728317, -0.04999315598385], +[0.04640056478277, -0.05003857573676], +[0.05155570675176, -0.05008937883716], +[0.05671069801777, -0.05014557858817], +[0.0618655233747, -0.05020718970421], +[0.06702016758034, -0.05027422831434], +[0.0721746153544, -0.05034671196592], +[0.07732885137673, -0.0504246596286], +[0.08248286028601, -0.05050809169869], +[0.08763662667878, -0.05059703000386], +[0.09279013510887, -0.05069149780818], +[0.09794337008733, -0.05079151981755], +[0.1030963160828, -0.05089712218546], +[0.1082489575224, -0.05100833251917], +[0.113401278793, -0.05112517988624], +[0.1185532642437, -0.0512476948214], +[0.1237048981877, -0.05137590933394], +[0.1288561649063, -0.0515098569153], +[0.1340070486522, -0.05164957254723], +[0.1391575336546, -0.0517950927103], +[0.1443076041243, -0.05194645539276], +[0.1494572442599, -0.05210370009992], +[0.154606438255, -0.05226686786382], +[0.1597551703056, -0.05243600125345], +[0.1649034246192, -0.05261114438528], +[0.1700511854245, -0.05279234293431], +[0.1751984369816, -0.05297964414542], +[0.1803451635941, -0.05317309684532], +[0.1854913496216, -0.05337275145469], +[0.1906369794935, -0.053578660001], +[0.195782037724, -0.0537908761315], +[0.2009265089282, -0.05400945512676], +[0.2060703778396, -0.0542344539146], +[0.2112136293284, -0.05446593108436], +[0.2163562484217, -0.05470394690155], +[0.2214982203249, -0.05494856332291], +[0.226639530444, -0.05519984401182], +[0.2317801644104, -0.05545785435392], +[0.2369201081058, -0.05572266147322], +[0.2420593476902, -0.05599433424833], +[0.2471978696301, -0.05627294332906], +[0.2523356607295, -0.05655856115315], +[0.2574727081615, -0.05685126196323], +[0.2626089995025, -0.05715112182398], +[0.2677445227678, -0.05745821863923], +[0.2728792664491, -0.05777263216941], +[0.2780132195537, -0.05809444404854], +[0.283146371646, -0.05842373780171], +[0.2882787128902, -0.05876059886202], +[0.293410234096, -0.05910511458755], +[0.2985409267655, -0.059457374278], +[0.3036707831422, -0.05981746919097], +[0.3087997962627, -0.06018549255789], +[0.3139279600098, -0.06056153959932], +[0.3190552691683, -0.06094570753976], +[0.3241817194821, -0.0613380956216], +[0.3293073077144, -0.0617388051183], +[0.3344320317094, -0.06214793934664], +[0.3395558904566, -0.06256560367772], +[0.3446788841567, -0.06299190554693], +[0.3498010142899, -0.06342695446235], +[0.3549222836866, -0.06387086201174], +[0.3600426965992, -0.06432374186773], +[0.3651622587774, -0.06478570979122], +[0.3702809775436, -0.06525688363267], +[0.3753988618718, -0.06573738333113], +[0.3805159224673, -0.06622733091087], +[0.3856321718483, -0.06672685047534], +[0.3907476244294, -0.06723606819824], +[0.3958622966061, -0.06775511231158], +[0.4009762068404, -0.06828411309029], +[0.4060893757486, -0.06882320283348], +[0.4112018261885, -0.06937251584171], +[0.4163135833483, -0.06993218839039], +[0.4214246748361, -0.07050235869885], +[0.4265351307687, -0.07108316689485], +[0.4316449838611, -0.07167475497441], +[0.4367542695157, -0.07227726675657], +[0.4418630259102, -0.0728908478329], +[0.4469712940851, -0.07351564551151], +[0.4520791180295, -0.07415180875536], +[0.4571865447648, -0.07479948811449], +[0.462293624427, -0.07545883565277], +[0.4674004103457, -0.07613000486657], +[-0.464715490006, -0.07148030858077], +[-0.4596042045922, -0.07081442058855], +[-0.454492225342, -0.07015998197536], +[-0.4493800679331, -0.0695171042036], +[-0.4442676832686, -0.06888563881143], +[-0.4391550251992, -0.06826543878671], +[-0.4340420504468, -0.06765635863778], +[-0.4289287185248, -0.06705825445835], +[-0.4238149916571, -0.06647098398689], +[-0.4187008346963, -0.06589440666064], +[-0.4135862150396, -0.06532838366449], +[-0.4084711025457, -0.06477277797487], +[-0.40335546945, -0.064227454399], +[-0.3982392902805, -0.06369227960962], +[-0.3931225417732, -0.06316712217553], +[-0.3880052027891, -0.06265185258802], +[-0.3828872542305, -0.06214634328362], +[-0.3777686789587, -0.06165046866315], +[-0.3726494617133, -0.06116410510757], +[-0.3675295890316, -0.06068713099059], +[-0.36240904917, -0.06021942668842], +[-0.3572878320268, -0.05976087458677], +[-0.3521659290665, -0.05931135908537], +[-0.3470433332453, -0.05887076660018], +[-0.3419200389394, -0.05843898556339], +[-0.3367960418738, -0.05801590642151], +[-0.3316713390541, -0.05760142163173], +[-0.3265459286996, -0.0571954256565], +[-0.3214198101784, -0.05679781495676], +[-0.3162929839444, -0.05640848798383], +[-0.3111654514772, -0.05602734517001], +[-0.3060372152224, -0.05565428891825], +[-0.3009082785353, -0.05528922359079], +[-0.2957786456262, -0.054932055497], +[-0.2906483215072, -0.05458269288054], +[-0.285517311942, -0.05424104590587], +[-0.2803856233965, -0.05390702664426], +[-0.2752532629926, -0.05358054905936], +[-0.2701202384629, -0.05326152899244], +[-0.2649865581077, -0.05294988414734], +[-0.2598522307543, -0.05264553407527], +[-0.2547172657171, -0.0523484001594], +[-0.249581672761, -0.05205840559942], +[-0.2444454620648, -0.05177547539612], +[-0.2393086441879, -0.05149953633588], +[-0.2341712300377, -0.05123051697541], +[-0.2290332308394, -0.05096834762641], +[-0.2238946581062, -0.05071296034059], +[-0.218755523613, -0.0504642888947], +[-0.2136158393693, -0.0502222687759], +[-0.2084756175956, -0.04998683716731], +[-0.2033348707001, -0.0497579329339], +[-0.1981936112571, -0.04953549660857], +[-0.1930518519866, -0.04931947037865], +[-0.1879096057358, -0.04910979807265], +[-0.1827668854607, -0.04890642514739], +[-0.1776237042104, -0.04870929867545], +[-0.1724800751111, -0.04851836733303], +[-0.1673360113525, -0.04833358138812], +[-0.1621915261744, -0.0481548926891], +[-0.1570466328547, -0.04798225465365], +[-0.1519013446986, -0.04781562225819], +[-0.1467556750284, -0.04765495202746], +[-0.1416096371743, -0.04750020202471], +[-0.1364632444667, -0.04735133184222], +[-0.1313165102282, -0.04720830259212], +[-0.1261694477675, -0.04707107689766], +[-0.1210220703738, -0.04693961888488], +[-0.1158743913113, -0.04681389417462], +[-0.1107264238155, -0.04669386987488], +[-0.1055781810892, -0.0465795145736], +[-0.1004296762998, -0.04647079833182], +[-0.09528092257694, -0.04636769267708], +[-0.09013193301078, -0.04627017059734], +[-0.08498272065075, -0.04617820653514], +[-0.07983329850491, -0.04609177638211], +[-0.07468367953982, -0.04601085747386], +[-0.06953387668075, -0.0459354285852], +[-0.06438390281242, -0.04586546992565], +[-0.0592337707801, -0.0458009631353], +[-0.05408349339105, -0.04574189128101], +[-0.04893308341638, -0.04568823885287], +[-0.04378255359311, -0.045639991761], +[-0.03863191662662, -0.0455971373327], +[-0.03348118519326, -0.0455596643098], +[-0.02833037194327, -0.04552756284638], +[-0.02317948950384, -0.04550082450678], +[-0.01802855048237, -0.0454794422639], +[-0.01287756746987, -0.04546341049775], +[-0.007726553044472, -0.04545272499432], +[-0.002575519775063, -0.04544738294475], +[0.002575519775062, -0.04544738294475], +[0.007726553044471, -0.04545272499432], +[0.01287756746987, -0.04546341049775], +[0.01802855048237, -0.04547944226391], +[0.02317948950384, -0.04550082450678], +[0.02833037194327, -0.04552756284638], +[0.03348118519326, -0.0455596643098], +[0.03863191662662, -0.0455971373327], +[0.04378255359311, -0.045639991761], +[0.04893308341638, -0.04568823885286], +[0.05408349339105, -0.04574189128101], +[0.0592337707801, -0.0458009631353], +[0.06438390281242, -0.04586546992565], +[0.06953387668075, -0.0459354285852], +[0.07468367953982, -0.04601085747386], +[0.07983329850491, -0.04609177638211], +[0.08498272065075, -0.04617820653514], +[0.09013193301078, -0.04627017059734], +[0.09528092257694, -0.04636769267708], +[0.1004296762998, -0.04647079833182], +[0.1055781810892, -0.0465795145736], +[0.1107264238155, -0.04669386987488], +[0.1158743913113, -0.04681389417462], +[0.1210220703738, -0.04693961888488], +[0.1261694477675, -0.04707107689766], +[0.1313165102282, -0.04720830259212], +[0.1364632444667, -0.04735133184222], +[0.1416096371743, -0.04750020202471], +[0.1467556750284, -0.04765495202746], +[0.1519013446986, -0.04781562225819], +[0.1570466328547, -0.04798225465368], +[0.1621915261744, -0.0481548926891], +[0.1673360113525, -0.04833358138812], +[0.1724800751111, -0.04851836733303], +[0.1776237042104, -0.04870929867545], +[0.1827668854607, -0.04890642514739], +[0.1879096057358, -0.04910979807265], +[0.1930518519866, -0.04931947037865], +[0.1981936112571, -0.04953549660857], +[0.2033348707001, -0.0497579329339], +[0.2084756175956, -0.04998683716731], +[0.2136158393693, -0.0502222687759], +[0.218755523613, -0.0504642888947], +[0.2238946581062, -0.05071296034059], +[0.2290332308394, -0.05096834762641], +[0.2341712300377, -0.0512305169754], +[0.2393086441879, -0.05149953633588], +[0.2444454620648, -0.05177547539612], +[0.249581672761, -0.05205840559942], +[0.2547172657171, -0.0523484001594], +[0.2598522307543, -0.05264553407527], +[0.2649865581077, -0.05294988414734], +[0.2701202384629, -0.05326152899243], +[0.2752532629926, -0.05358054905936], +[0.2803856233965, -0.05390702664426], +[0.285517311942, -0.05424104590587], +[0.2906483215072, -0.05458269288054], +[0.2957786456262, -0.054932055497], +[0.3009082785353, -0.05528922359079], +[0.3060372152224, -0.05565428891825], +[0.3111654514772, -0.05602734517001], +[0.3162929839444, -0.05640848798383], +[0.3214198101784, -0.05679781495676], +[0.3265459286996, -0.0571954256565], +[0.3316713390541, -0.05760142163173], +[0.3367960418738, -0.05801590642151], +[0.3419200389394, -0.05843898556339], +[0.3470433332453, -0.05887076660018], +[0.3521659290665, -0.05931135908537], +[0.3572878320268, -0.05976087458677], +[0.36240904917, -0.06021942668842], +[0.3675295890316, -0.06068713099059], +[0.3726494617133, -0.06116410510757], +[0.3777686789587, -0.06165046866315], +[0.3828872542305, -0.06214634328362], +[0.3880052027891, -0.06265185258802], +[0.3931225417732, -0.06316712217553], +[0.3982392902805, -0.06369227960962], +[0.40335546945, -0.064227454399], +[0.4084711025457, -0.06477277797487], +[0.4135862150396, -0.06532838366449], +[0.4187008346963, -0.06589440666064], +[0.4238149916571, -0.06647098398689], +[0.4289287185248, -0.06705825445835], +[0.4340420504468, -0.06765635863778], +[0.4391550251992, -0.06826543878671], +[0.4442676832686, -0.06888563881143], +[0.4493800679331, -0.0695171042036], +[0.454492225342, -0.07015998197536], +[0.4596042045922, -0.07081442058855], +[0.4647154903126, -0.07148031088069], +[-0.4620264537119, -0.06682203893904], +[-0.4569097734067, -0.06616100050036], +[-0.4517931325196, -0.06551156355372], +[-0.4466764800422, -0.06487358179056], +[-0.4415597678252, -0.06424691021731], +[-0.436442950508, -0.06363140522876], +[-0.4313259854457, -0.06302692467589], +[-0.4262088326346, -0.06243332792827], +[-0.4210914546356, -0.0618504759313], +[-0.4159738164968, -0.06127823125839], +[-0.4108558856748, -0.06071645815829], +[-0.4057376319555, -0.06016502259787], +[-0.4006190273744, -0.05962379230041], +[-0.3955000461373, -0.0590926367797], +[-0.3903806645407, -0.05857142737018], +[-0.3852608608924, -0.05806003725326], +[-0.3801406154336, -0.05755834148008], +[-0.3750199102605, -0.05706621699092], +[-0.3698987292479, -0.05658354263142], +[-0.3647770579732, -0.05611019916589], +[-0.3596548836423, -0.05564606928782], +[-0.3545321950159, -0.05519103762785], +[-0.3494089823384, -0.05474499075932], +[-0.344285237267, -0.05430781720159], +[-0.3391609528041, -0.05387940742169], +[-0.3340361232295, -0.05345965383314], +[-0.3289107440358, -0.05304845079435], +[-0.3237848118653, -0.05264569460448], +[-0.3186583244478, -0.05225128349834], +[-0.3135312805418, -0.05186511763982], +[-0.3084036798761, -0.05148709911433], +[-0.3032755230946, -0.05111713192007], +[-0.2981468117016, -0.05075512195848], +[-0.2930175480105, -0.05040097702388], +[-0.2878877350932, -0.05005460679239], +[-0.282757376732, -0.04971592281025], +[-0.2776264773734, -0.04938483848163], +[-0.2724950420832, -0.04906126905605], +[-0.2673630765042, -0.04874513161539], +[-0.2622305868151, -0.04843634506066], +[-0.2570975796914, -0.04813483009855], +[-0.2519640622681, -0.04784050922785], +[-0.2468300421042, -0.04755330672572], +[-0.2416955271487, -0.04727314863401], +[-0.236560525708, -0.04699996274547], +[-0.2314250464156, -0.04673367859017], +[-0.226289098203, -0.04647422742183], +[-0.2211526902715, -0.04622154220445], +[-0.2160158320671, -0.04597555759896], +[-0.2108785332551, -0.04573620995013], +[-0.2057408036969, -0.0455034372737], +[-0.2006026534288, -0.04527717924373], +[-0.1954640926406, -0.04505737718019], +[-0.1903251316571, -0.04484397403685], +[-0.1851857809196, -0.04463691438948], +[-0.1800460509697, -0.04443614442428], +[-0.1749059524328, -0.04424161192673], +[-0.1697654960046, -0.04405326627069], +[-0.1646246924371, -0.04387105840784], +[-0.1594835525265, -0.04369494085748], +[-0.1543420871017, -0.04352486769677], +[-0.1492003070141, -0.04336079455095], +[-0.1440582231281, -0.04320267858447], +[-0.1389158463126, -0.043050478492], +[-0.1337731874334, -0.04290415448999], +[-0.1286302573462, -0.04276366830859], +[-0.1234870668908, -0.04262898318382], +[-0.1183436268854, -0.04250006385017], +[-0.1131999481225, -0.04237687653355], +[-0.1080560413648, -0.04225938894445], +[-0.1029119173419, -0.04214757027161], +[-0.0977675867477, -0.04204139117589], +[-0.09262306023853, -0.04194082378453], +[-0.08747834843157, -0.04184584168571], +[-0.08233346190391, -0.04175641992342], +[-0.07718841119218, -0.04167253499265], +[-0.07204320679247, -0.04159416483492], +[-0.06689785916088, -0.04152128883402], +[-0.06175237871434, -0.04145388781217], +[-0.05660677583184, -0.04139194402635], +[-0.05146106085609, -0.04133544116503], +[-0.04631524409534, -0.0412843643451], +[-0.04116933582565, -0.04123870010908], +[-0.03602334629334, -0.0411984364227], +[-0.03087728571771, -0.04116356267265], +[-0.02573116429394, -0.04113406966462], +[-0.0205849921962, -0.04110994962164], +[-0.01543877958093, -0.04109119618266], +[-0.0102925365902, -0.0410778044014], +[-0.005146273355247, -0.04106977074543], +[0, -0.04106709309556], +[0.005146273355247, -0.04106977074543], +[0.0102925365902, -0.0410778044014], +[0.01543877958093, -0.04109119618266], +[0.0205849921962, -0.04110994962164], +[0.02573116429394, -0.04113406966462], +[0.03087728571771, -0.04116356267265], +[0.03602334629334, -0.0411984364227], +[0.04116933582565, -0.04123870010908], +[0.04631524409533, -0.0412843643451], +[0.05146106085609, -0.04133544116503], +[0.05660677583184, -0.04139194402635], +[0.06175237871434, -0.04145388781217], +[0.06689785916088, -0.04152128883402], +[0.07204320679247, -0.04159416483492], +[0.07718841119218, -0.04167253499265], +[0.08233346190392, -0.04175641992342], +[0.08747834843157, -0.04184584168571], +[0.09262306023853, -0.04194082378454], +[0.0977675867477, -0.04204139117589], +[0.1029119173419, -0.04214757027161], +[0.1080560413648, -0.04225938894445], +[0.1131999481225, -0.04237687653355], +[0.1183436268854, -0.04250006385017], +[0.1234870668908, -0.04262898318382], +[0.1286302573462, -0.04276366830859], +[0.1337731874334, -0.04290415448999], +[0.1389158463126, -0.043050478492], +[0.1440582231281, -0.04320267858447], +[0.1492003070141, -0.04336079455095], +[0.1543420871017, -0.04352486769677], +[0.1594835525265, -0.04369494085749], +[0.1646246924371, -0.04387105840784], +[0.1697654960046, -0.04405326627069], +[0.1749059524328, -0.04424161192673], +[0.1800460509697, -0.04443614442428], +[0.1851857809196, -0.04463691438948], +[0.1903251316571, -0.04484397403685], +[0.1954640926406, -0.04505737718019], +[0.2006026534288, -0.04527717924373], +[0.2057408036969, -0.0455034372737], +[0.2108785332551, -0.04573620995013], +[0.2160158320671, -0.04597555759896], +[0.2211526902715, -0.04622154220445], +[0.226289098203, -0.04647422742183], +[0.2314250464156, -0.04673367859017], +[0.236560525708, -0.04699996274547], +[0.2416955271487, -0.04727314863401], +[0.2468300421042, -0.04755330672572], +[0.2519640622681, -0.04784050922785], +[0.2570975796914, -0.04813483009855], +[0.2622305868151, -0.04843634506066], +[0.2673630765042, -0.04874513161539], +[0.2724950420832, -0.04906126905605], +[0.2776264773734, -0.04938483848163], +[0.282757376732, -0.04971592281025], +[0.2878877350932, -0.05005460679239], +[0.2930175480105, -0.05040097702388], +[0.2981468117016, -0.05075512195848], +[0.3032755230946, -0.05111713192007], +[0.3084036798761, -0.05148709911433], +[0.3135312805418, -0.05186511763982], +[0.3186583244478, -0.05225128349834], +[0.3237848118653, -0.05264569460448], +[0.3289107440358, -0.05304845079435], +[0.3340361232295, -0.05345965383314], +[0.3391609528041, -0.05387940742169], +[0.344285237267, -0.05430781720182], +[0.3494089823384, -0.05474499075932], +[0.3545321950159, -0.05519103762785], +[0.3596548836423, -0.05564606928782], +[0.3647770579732, -0.05611019916589], +[0.3698987292479, -0.05658354263142], +[0.3750199102605, -0.05706621699092], +[0.3801406154336, -0.05755834148008], +[0.3852608608924, -0.05806003725326], +[0.3903806645407, -0.05857142737018], +[0.3955000461373, -0.0590926367797], +[0.4006190273744, -0.05962379230041], +[0.4057376319555, -0.06016502259787], +[0.4108558856748, -0.06071645815829], +[0.4159738164968, -0.06127823125839], +[0.4210914546356, -0.0618504759313], +[0.4262088326346, -0.06243332792827], +[0.4313259854457, -0.06302692467589], +[0.436442950508, -0.06363140522876], +[0.4415597678252, -0.06424691021731], +[0.4466764800422, -0.06487358179056], +[0.4517931325196, -0.06551156355372], +[0.4569097734067, -0.06616100050036], +[0.4620264537119, -0.06682203893904], +[-0.4593317184184, -0.06215462049778], +[-0.4542104475291, -0.06149878221908], +[-0.449089379323, -0.06085443797101], +[-0.4439684638078, -0.06022144484147], +[-0.4388476536938, -0.05959966117708], +[-0.4337269043269, -0.05898894665359], +[-0.4286061736203, -0.05838916234096], +[-0.4234854219835, -0.05780017076354], +[-0.418364612251, -0.05722183595521], +[-0.4132437096083, -0.05665402350994], +[-0.4081226815185, -0.05609660062773], +[-0.4030014976468, -0.05554943615623], +[-0.3978801297863, -0.05501240062829], +[-0.392758551782, -0.05448536629541], +[-0.3876367394564, -0.05396820715756], +[-0.3825146705344, -0.0534607989894], +[-0.3773923245693, -0.0529630193631], +[-0.3722696828693, -0.05247474766801], +[-0.367146728425, -0.05199586512739], +[-0.3620234458377, -0.05152625481228], +[-0.3568998212487, -0.05106580165282], +[-0.3517758422705, -0.05061439244704], +[-0.3466514979189, -0.05017191586753], +[-0.3415267785462, -0.0497382624659], +[-0.3364016757767, -0.04931332467533], +[-0.3312761824431, -0.04889699681139], +[-0.3261502925248, -0.04848917507116], +[-0.3210240010884, -0.04808975753093], +[-0.3158973042286, -0.04769864414248], +[-0.3107701990123, -0.04731573672815], +[-0.3056426834236, -0.04694093897486], +[-0.3005147563107, -0.04657415642707], +[-0.295386417335, -0.04621529647891], +[-0.2902576669215, -0.04586426836548], +[-0.2851285062112, -0.04552098315352], +[-0.2799989370153, -0.04518535373147], +[-0.2748689617713, -0.04485729479904], +[-0.2697385835005, -0.04453672285628], +[-0.2646078057675, -0.04422355619244], +[-0.2594766326415, -0.04391771487438], +[-0.2543450686589, -0.04361912073489], +[-0.2492131187881, -0.04332769736078], +[-0.2440807883954, -0.04304337008089], +[-0.2389480832129, -0.042766065954], +[-0.2338150093077, -0.04249571375681], +[-0.2286815730529, -0.04223224397179], +[-0.2235477810997, -0.04197558877537], +[-0.2184136403514, -0.0417256820259], +[-0.2132791579386, -0.041482459252], +[-0.2081443411958, -0.04124585764093], +[-0.2030091976393, -0.04101581602722], +[-0.1978737349464, -0.04079227488141], +[-0.1927379609364, -0.04057517629918], +[-0.1876018835517, -0.04036446399052], +[-0.1824655108412, -0.04016008326933], +[-0.1773288509446, -0.03996198104319], +[-0.172191912077, -0.03977010580345], +[-0.167054702516, -0.03958440761559], +[-0.1619172305885, -0.03940483810991], +[-0.1567795046594, -0.03923135047249], +[-0.1516415331206, -0.03906389943647], +[-0.1465033243819, -0.03890244127364], +[-0.1413648868614, -0.03874693378637], +[-0.1362262289783, -0.0385973362998], +[-0.1310873591452, -0.03845360965437], +[-0.1259482857619, -0.03831571619872], +[-0.12080901721, -0.03818361978276], +[-0.1156695618481, -0.03805728575125], +[-0.110529928007, -0.03793668093746], +[-0.105390123987, -0.03782177365735], +[-0.1002501580546, -0.0377125337039], +[-0.09511003844027, -0.03760893234178], +[-0.08996977333659, -0.03751094230237], +[-0.08482937089736, -0.03741853777896], +[-0.0796888392367, -0.03733169442232], +[-0.07454818642888, -0.03725038933655], +[-0.06940742050857, -0.03717460107511], +[-0.06426654947147, -0.03710430963724], +[-0.05912558127535, -0.03703949646458], +[-0.05398452384142, -0.03698014443805], +[-0.0488433850561, -0.036926237875], +[-0.04370217277298, -0.03687776252662], +[-0.03856089481518, -0.0368347055756], +[-0.03341955897784, -0.03679705563401], +[-0.02827817303095, -0.03676480274145], +[-0.02313674472225, -0.03673793836342], +[-0.01799528178041, -0.03671645538994], +[-0.01285379191832, -0.03670034813441], +[-0.007712282836403, -0.03668961233268], +[-0.002570762226189, -0.03668424514235], +[0.00257076222619, -0.03668424514235], +[0.007712282836403, -0.03668961233268], +[0.01285379191832, -0.03670034813441], +[0.01799528178041, -0.03671645538994], +[0.02313674472225, -0.03673793836342], +[0.02827817303095, -0.03676480274145], +[0.03341955897784, -0.03679705563401], +[0.03856089481518, -0.0368347055756], +[0.04370217277298, -0.03687776252662], +[0.04884338505609, -0.036926237875], +[0.05398452384142, -0.03698014443805], +[0.05912558127534, -0.03703949646458], +[0.06426654947147, -0.03710430963724], +[0.06940742050857, -0.03717460107511], +[0.07454818642889, -0.03725038933655], +[0.07968883923671, -0.03733169442232], +[0.08482937089737, -0.03741853777895], +[0.08996977333659, -0.03751094230237], +[0.09511003844027, -0.03760893234178], +[0.1002501580546, -0.0377125337039], +[0.105390123987, -0.03782177365735], +[0.110529928007, -0.03793668093746], +[0.1156695618481, -0.03805728575125], +[0.12080901721, -0.03818361978276], +[0.1259482857619, -0.03831571619872], +[0.1310873591452, -0.03845360965437], +[0.1362262289783, -0.0385973362998], +[0.1413648868614, -0.03874693378637], +[0.1465033243819, -0.03890244127364], +[0.1516415331206, -0.03906389943647], +[0.1567795046594, -0.03923135047249], +[0.1619172305885, -0.03940483810991], +[0.167054702516, -0.03958440761559], +[0.172191912077, -0.03977010580345], +[0.1773288509446, -0.03996198104319], +[0.1824655108412, -0.04016008326933], +[0.1876018835517, -0.04036446399052], +[0.1927379609364, -0.04057517629918], +[0.1978737349464, -0.04079227488141], +[0.2030091976393, -0.04101581602722], +[0.2081443411958, -0.04124585764093], +[0.2132791579386, -0.041482459252], +[0.2184136403514, -0.0417256820259], +[0.2235477810997, -0.04197558877537], +[0.2286815730529, -0.04223224397179], +[0.2338150093077, -0.04249571375678], +[0.2389480832129, -0.042766065954], +[0.2440807883954, -0.04304337008089], +[0.2492131187881, -0.04332769736078], +[0.2543450686589, -0.04361912073489], +[0.2594766326415, -0.04391771487438], +[0.2646078057675, -0.04422355619244], +[0.2697385835005, -0.04453672285628], +[0.2748689617713, -0.04485729479904], +[0.2799989370153, -0.04518535373147], +[0.2851285062112, -0.04552098315352], +[0.2902576669215, -0.04586426836548], +[0.295386417335, -0.04621529647891], +[0.3005147563107, -0.04657415642707], +[0.3056426834236, -0.04694093897486], +[0.3107701990123, -0.04731573672815], +[0.3158973042286, -0.04769864414248], +[0.3210240010884, -0.04808975753093], +[0.3261502925248, -0.04848917507116], +[0.3312761824431, -0.04889699681139], +[0.3364016757767, -0.04931332467533], +[0.3415267785462, -0.0497382624659], +[0.3466514979189, -0.05017191586753], +[0.3517758422705, -0.05061439244704], +[0.3568998212487, -0.05106580165282], +[0.3620234458377, -0.05152625481228], +[0.367146728425, -0.05199586512739], +[0.3722696828693, -0.05247474766801], +[0.3773923245693, -0.0529630193631], +[0.3825146705344, -0.0534607989894], +[0.3876367394564, -0.05396820715756], +[0.392758551782, -0.05448536629541], +[0.3978801297863, -0.05501240062829], +[0.4030014976468, -0.05554943615623], +[0.4081226815185, -0.05609660062773], +[0.4132437096083, -0.05665402350994], +[0.418364612251, -0.05722183595522], +[0.4234854219835, -0.05780017076354], +[0.4286061736203, -0.05838916234096], +[0.4337269043269, -0.05898894665359], +[0.4388476536938, -0.05959966117708], +[0.4439684638078, -0.06022144484147], +[0.449089379323, -0.06085443797101], +[0.4542104475291, -0.06149878221908], +[0.4593317184184, -0.06215462049778], +[-0.4566319707612, -0.057478520388], +[-0.4515063422438, -0.0568279699807], +[-0.4463810775349, -0.05618880777755], +[-0.4412561275665, -0.05556089413797], +[-0.4361314458223, -0.05494409062563], +[-0.4310069882753, -0.05433826007606], +[-0.4258827133228, -0.05374326665931], +[-0.4207585817201, -0.05315897593765], +[-0.4156345565125, -0.05258525492019], +[-0.4105106029661, -0.05202197210934], +[-0.4053866884979, -0.05146899754801], +[-0.4002627826058, -0.05092620285896], +[-0.395138856797, -0.05039346128182], +[-0.3900148845177, -0.04987064770605], +[-0.3848908410818, -0.04935763870045], +[-0.3797667036007, -0.04885431253927], +[-0.374642450913, -0.04836054922516], +[-0.3695180635155, -0.04787623050912], +[-0.364393523494, -0.04740123990764], +[-0.359268814456, -0.04693546271721], +[-0.3541439214643, -0.04647878602631], +[-0.3490188309709, -0.04603109872519], +[-0.3438935307533, -0.04559229151341], +[-0.3387680098515, -0.04516225690541], +[-0.3336422585066, -0.04474088923427], +[-0.3285162681007, -0.0443280846538], +[-0.3233900310986, -0.04392374113896], +[-0.3182635409909, -0.04352775848498], +[-0.313136792239, -0.04314003830512], +[-0.3080097802208, -0.04276048402724], +[-0.3028825011799, -0.04238900088937], +[-0.2977549521742, -0.04202549593425], +[-0.2926271310281, -0.04166987800309], +[-0.2874990362855, -0.04132205772849], +[-0.2823706671644, -0.04098194752678], +[-0.2772420235137, -0.04064946158975], +[-0.2721131057712, -0.04032451587574], +[-0.2669839149236, -0.04000702810093], +[-0.2618544524678, -0.03969691772888], +[-0.2567247203743, -0.03939410596157], +[-0.2515947210518, -0.03909851572887], +[-0.2464644573134, -0.0388100716784], +[-0.2413339323449, -0.03852870016517], +[-0.2362031496735, -0.03825432924106], +[-0.2310721131392, -0.03798688864443], +[-0.2259408268669, -0.03772630978958], +[-0.2208092952404, -0.03747252575632], +[-0.2156775228773, -0.03722547127966], +[-0.2105455146055, -0.03698508273948], +[-0.2054132754413, -0.0367512981505], +[-0.2002808105684, -0.03652405715222], +[-0.1951481253181, -0.0363033009992], +[-0.190015225151, -0.03608897255141], +[-0.1848821156401, -0.0358810162649], +[-0.1797488024541, -0.03567937818257], +[-0.174615291343, -0.03548400592533], +[-0.1694815881237, -0.03529484868334], +[-0.1643476986677, -0.03511185720766], +[-0.1592136288885, -0.03493498380205], +[-0.1540793847314, -0.03476418231515], +[-0.1489449721632, -0.03459940813275], +[-0.1438103971629, -0.03444061817058], +[-0.1386756657139, -0.03428777086718], +[-0.1335407837964, -0.03414082617715], +[-0.1284057573808, -0.03399974556466], +[-0.1232705924218, -0.03386449199719], +[-0.1181352948532, -0.03373502993967], +[-0.1129998705839, -0.03361132534872], +[-0.1078643254937, -0.03349334566735], +[-0.1027286654303, -0.03338105981977], +[-0.09759289620673, -0.03327443820659], +[-0.09245702359953, -0.03317345270019], +[-0.0873210533472, -0.03307807664042], +[-0.0821849911493, -0.03298828483052], +[-0.07704884266605, -0.03290405353329], +[-0.07191261351833, -0.03282536046752], +[-0.06677630928813, -0.03275218480465], +[-0.06163993551938, -0.03268450716568], +[-0.05650349771916, -0.03262230961831], +[-0.05136700135923, -0.03256557567433], +[-0.04623045187792, -0.03251429028718], +[-0.04109385468221, -0.03246843984977], +[-0.03595721515021, -0.03242801219258], +[-0.03082053863372, -0.03239299658183], +[-0.02568383046111, -0.03236338371799], +[-0.02054709594031, -0.03233916573446], +[-0.01541034036201, -0.03232033619645], +[-0.01027356900293, -0.03230689010006], +[-0.005136787129228, -0.03229882387157], +[0, -0.03229613536695], +[0.005136787129229, -0.03229882387157], +[0.01027356900292, -0.03230689010006], +[0.01541034036201, -0.03232033619646], +[0.02054709594031, -0.03233916573446], +[0.02568383046111, -0.03236338371799], +[0.03082053863372, -0.03239299658183], +[0.03595721515021, -0.03242801219258], +[0.04109385468221, -0.03246843984977], +[0.04623045187792, -0.03251429028717], +[0.05136700135924, -0.03256557567433], +[0.05650349771916, -0.03262230961831], +[0.06163993551938, -0.03268450716568], +[0.06677630928813, -0.03275218480465], +[0.07191261351833, -0.03282536046752], +[0.07704884266605, -0.03290405353329], +[0.0821849911493, -0.03298828483052], +[0.0873210533472, -0.03307807664042], +[0.09245702359953, -0.03317345270019], +[0.09759289620673, -0.03327443820659], +[0.1027286654303, -0.03338105981977], +[0.1078643254937, -0.03349334566735], +[0.1129998705839, -0.03361132534872], +[0.1181352948532, -0.03373502993967], +[0.1232705924218, -0.03386449199719], +[0.1284057573808, -0.03399974556466], +[0.1335407837964, -0.03414082617715], +[0.1386756657139, -0.03428777086718], +[0.1438103971629, -0.03444061817058], +[0.1489449721632, -0.03459940813275], +[0.1540793847314, -0.03476418231515], +[0.1592136288885, -0.03493498380208], +[0.1643476986677, -0.03511185720766], +[0.1694815881237, -0.03529484868334], +[0.174615291343, -0.03548400592533], +[0.1797488024541, -0.03567937818257], +[0.1848821156401, -0.0358810162649], +[0.190015225151, -0.03608897255141], +[0.1951481253181, -0.0363033009992], +[0.2002808105684, -0.03652405715222], +[0.2054132754413, -0.0367512981505], +[0.2105455146055, -0.03698508273948], +[0.2156775228773, -0.03722547127966], +[0.2208092952404, -0.03747252575632], +[0.2259408268669, -0.03772630978958], +[0.2310721131392, -0.03798688864443], +[0.2362031496735, -0.03825432924106], +[0.2413339323449, -0.03852870016517], +[0.2464644573134, -0.0388100716784], +[0.2515947210518, -0.03909851572887], +[0.2567247203743, -0.03939410596157], +[0.2618544524678, -0.03969691772888], +[0.2669839149236, -0.04000702810093], +[0.2721131057712, -0.0403245158757], +[0.2772420235137, -0.04064946158975], +[0.2823706671644, -0.04098194752678], +[0.2874990362855, -0.04132205772849], +[0.2926271310281, -0.04166987800309], +[0.2977549521742, -0.04202549593425], +[0.3028825011799, -0.04238900088937], +[0.3080097802208, -0.04276048402724], +[0.313136792239, -0.04314003830512], +[0.3182635409909, -0.04352775848498], +[0.3233900310986, -0.04392374113896], +[0.3285162681007, -0.0443280846538], +[0.3336422585066, -0.04474088923427], +[0.3387680098515, -0.04516225690541], +[0.3438935307533, -0.04559229151341], +[0.3490188309709, -0.04603109872519], +[0.3541439214643, -0.04647878602631], +[0.359268814456, -0.04693546271721], +[0.364393523494, -0.04740123990764], +[0.3695180635155, -0.04787623050912], +[0.374642450913, -0.04836054922516], +[0.3797667036007, -0.04885431253927], +[0.3848908410818, -0.04935763870045], +[0.3900148845177, -0.04987064770605], +[0.395138856797, -0.05039346128182], +[0.4002627826058, -0.05092620285896], +[0.4053866884979, -0.05146899754801], +[0.4105106029661, -0.05202197210934], +[0.4156345565125, -0.05258525492019], +[0.4207585817202, -0.05315897593809], +[0.4258827133228, -0.05374326665931], +[0.4310069882753, -0.05433826007606], +[0.4361314458223, -0.05494409062563], +[0.4412561275665, -0.05556089413797], +[0.4463810775349, -0.05618880777755], +[0.4515063422438, -0.05682796998069], +[0.4566319707612, -0.057478520388], +[-0.4539273281323, -0.0527939419384], +[-0.4487975715178, -0.05214876553516], +[-0.4436683377464, -0.05151487306009], +[-0.4385395785846, -0.05089212802388], +[-0.4334112482063, -0.05028039508873], +[-0.4282833031339, -0.04967954013332], +[-0.4231557021772, -0.04908943031323], +[-0.4180284063706, -0.04850993411687], +[-0.412901378909, -0.0479409214172], +[-0.4077745850828, -0.04738226351919], +[-0.4026479922121, -0.04683383320342], +[-0.3975215695797, -0.04629550476573], +[-0.3923952883651, -0.04576715405329], +[-0.3872691215768, -0.04524865849715], +[-0.3821430439858, -0.04473989714144], +[-0.3770170320591, -0.04424075066942], +[-0.3718910638933, -0.04375110142656], +[-0.3667651191493, -0.04327083344079], +[-0.3616391789873, -0.04279983244005], +[-0.3565132260031, -0.04233798586741], +[-0.3513872441649, -0.04188518289378], +[-0.3462612187514, -0.04144131442822], +[-0.3411351362914, -0.04100627312786], +[-0.336008984504, -0.04057995340168], +[-0.3308827522405, -0.04016225141826], +[-0.3257564294281, -0.03975306510763], +[-0.3206300070137, -0.0393522941633], +[-0.3155034769112, -0.03895984004269], +[-0.3103768319482, -0.03857560596634], +[-0.3052500658159, -0.03819949691589], +[-0.3001231730195, -0.03783141963117], +[-0.2949961488308, -0.03747128260625], +[-0.2898689892421, -0.03711899608474], +[-0.2847416909219, -0.03677447205433], +[-0.279614251172, -0.03643762424066], +[-0.2744866678863, -0.03610836810067], +[-0.2693589395109, -0.03578662081542], +[-0.2642310650067, -0.03547230128252], +[-0.2591030438121, -0.03516533010813], +[-0.2539748758085, -0.03486562959878], +[-0.248846561287, -0.03457312375285], +[-0.243718100916, -0.03428773825193], +[-0.2385894957111, -0.03400940045197], +[-0.2334607470058, -0.03373803937446], +[-0.2283318564242, -0.03347358569738], +[-0.2232028258545, -0.03321597174636], +[-0.2180736574243, -0.03296513148564], +[-0.2129443534771, -0.0327210005092], +[-0.20781491655, -0.032483516032], +[-0.2026853493527, -0.03225261688121], +[-0.1975556547479, -0.03202824348766], +[-0.1924258357326, -0.0318103378774], +[-0.1872958954207, -0.03159884366347], +[-0.1821658370271, -0.03139370603772], +[-0.1770356638519, -0.03119487176304], +[-0.1719053792669, -0.03100228916556], +[-0.1667749867024, -0.03081590812725], +[-0.1616444896348, -0.03063568007866], +[-0.1565138915757, -0.03046155799188], +[-0.1513831960618, -0.03029349637379], +[-0.1462524066453, -0.03013145125947], +[-0.1411215268858, -0.02997538020598], +[-0.1359905603423, -0.02982524228624], +[-0.1308595105667, -0.02968099808325], +[-0.1257283810974, -0.02954260968455], +[-0.1205971754541, -0.02941004067685], +[-0.1154658971332, -0.02928325614104], +[-0.1103345496036, -0.0291622226473], +[-0.1052031363038, -0.02904690825052], +[-0.1000716606385, -0.02893728248599], +[-0.09494012597675, -0.02883331636524], +[-0.08980853565054, -0.0287349823722], +[-0.08467689295326, -0.02864225445949], +[-0.0795452011393, -0.02855510804503], +[-0.07441346342382, -0.0284735200088], +[-0.06928168298301, -0.02839746868986], +[-0.06414986295477, -0.02832693388353], +[-0.05901800643968, -0.02826189683885], +[-0.05388611650245, -0.02820234025616], +[-0.0487541961736, -0.02814824828495], +[-0.04362224845142, -0.02809960652186], +[-0.0384902763043, -0.0280564020089], +[-0.03335828267316, -0.02801862323184], +[-0.02822627047425, -0.02798626011879], +[-0.023094242602, -0.02795930403898], +[-0.01796220193213, -0.02793774780169], +[-0.01283015132485, -0.02792158565539], +[-0.007698093628198, -0.02791081328707], +[-0.002566031681437, -0.02790542782162], +[0.002566031681437, -0.02790542782163], +[0.007698093628197, -0.02791081328706], +[0.01283015132485, -0.0279215856554], +[0.01796220193214, -0.02793774780169], +[0.023094242602, -0.02795930403898], +[0.02822627047425, -0.02798626011879], +[0.03335828267316, -0.02801862323184], +[0.03849027630429, -0.0280564020089], +[0.04362224845142, -0.02809960652186], +[0.0487541961736, -0.02814824828495], +[0.05388611650245, -0.02820234025616], +[0.05901800643968, -0.02826189683885], +[0.06414986295477, -0.02832693388353], +[0.06928168298301, -0.02839746868986], +[0.07441346342382, -0.0284735200088], +[0.0795452011393, -0.02855510804503], +[0.08467689295326, -0.02864225445949], +[0.08980853565054, -0.0287349823722], +[0.09494012597675, -0.02883331636524], +[0.1000716606385, -0.02893728248599], +[0.1052031363038, -0.02904690825052], +[0.1103345496036, -0.0291622226473], +[0.1154658971332, -0.02928325614104], +[0.1205971754541, -0.02941004067685], +[0.1257283810974, -0.02954260968455], +[0.1308595105667, -0.02968099808325], +[0.1359905603423, -0.02982524228624], +[0.1411215268858, -0.02997538020598], +[0.1462524066453, -0.03013145125947], +[0.1513831960618, -0.03029349637379], +[0.1565138915757, -0.03046155799188], +[0.1616444896348, -0.03063568007866], +[0.1667749867024, -0.03081590812725], +[0.1719053792669, -0.03100228916556], +[0.1770356638519, -0.03119487176304], +[0.1821658370271, -0.03139370603772], +[0.1872958954207, -0.03159884366347], +[0.1924258357326, -0.0318103378774], +[0.1975556547479, -0.03202824348766], +[0.2026853493527, -0.03225261688121], +[0.20781491655, -0.032483516032], +[0.2129443534771, -0.0327210005092], +[0.2180736574243, -0.03296513148564], +[0.2232028258545, -0.03321597174636], +[0.2283318564242, -0.03347358569738], +[0.2334607470058, -0.03373803937443], +[0.2385894957111, -0.03400940045197], +[0.243718100916, -0.03428773825193], +[0.248846561287, -0.03457312375285], +[0.2539748758085, -0.03486562959878], +[0.2591030438121, -0.03516533010813], +[0.2642310650067, -0.03547230128252], +[0.2693589395109, -0.03578662081542], +[0.2744866678863, -0.03610836810067], +[0.279614251172, -0.03643762424066], +[0.2847416909219, -0.03677447205433], +[0.2898689892421, -0.03711899608474], +[0.2949961488308, -0.03747128260625], +[0.3001231730195, -0.03783141963117], +[0.3052500658159, -0.03819949691589], +[0.3103768319482, -0.03857560596634], +[0.3155034769112, -0.03895984004269], +[0.3206300070137, -0.0393522941633], +[0.3257564294281, -0.03975306510763], +[0.3308827522405, -0.04016225141826], +[0.336008984504, -0.04057995340168], +[0.3411351362914, -0.04100627312785], +[0.3462612187514, -0.04144131442847], +[0.3513872441649, -0.04188518289378], +[0.3565132260031, -0.04233798586741], +[0.3616391789873, -0.04279983244005], +[0.3667651191493, -0.04327083344079], +[0.3718910638933, -0.04375110142656], +[0.3770170320591, -0.04424075066942], +[0.3821430439858, -0.04473989714144], +[0.3872691215768, -0.04524865849715], +[0.3923952883651, -0.04576715405329], +[0.3975215695797, -0.04629550476573], +[0.4026479922121, -0.04683383320342], +[0.4077745850828, -0.04738226351919], +[0.412901378909, -0.0479409214172], +[0.4180284063706, -0.04850993411687], +[0.4231557021772, -0.04908943031323], +[0.4282833031339, -0.04967954013332], +[0.4334112482063, -0.05028039508873], +[0.4385395785846, -0.05089212802388], +[0.4436683377464, -0.05151487306008], +[0.4487975715178, -0.05214876553515], +[0.4539273281323, -0.0527939419384], +[-0.4512179065379, -0.04810108607771], +[-0.4460842480552, -0.04746136825017], +[-0.4409512694046, -0.04683283154425], +[-0.4358189231005, -0.04621534250609], +[-0.4306871639257, -0.0456087687822], +[-0.4255559488768, -0.04501297918202], +[-0.4204252371055, -0.04442784373623], +[-0.4152949898603, -0.04385323375087], +[-0.410165170426, -0.04328902185744], +[-0.4050357440618, -0.04273508205915], +[-0.3999066779399, -0.04219128977335], +[-0.3947779410823, -0.04165752187042], +[-0.3896495042978, -0.04113365670917], +[-0.3845213401192, -0.04061957416903], +[-0.37939342274, -0.04011515567897], +[-0.3742657279515, -0.03962028424357], +[-0.3691382330806, -0.03913484446624], +[-0.3640109169278, -0.0386587225697], +[-0.3588837597061, -0.03819180641403], +[-0.3537567429802, -0.03773398551234], +[-0.3486298496079, -0.03728515104419], +[-0.3435030636807, -0.036845195867], +[-0.3383763704667, -0.03641401452542], +[-0.3332497563548, -0.03599150325906], +[-0.3281232087992, -0.0355775600084], +[-0.322996716266, -0.03517208441926], +[-0.3178702681808, -0.03477497784581], +[-0.3127438548778, -0.03438614335231], +[-0.3076174675502, -0.0340054857136], +[-0.3024910982025, -0.03363291141455], +[-0.2973647396032, -0.03326832864853], +[-0.2922383852408, -0.032911647315], +[-0.2871120292789, -0.0325627790162], +[-0.2819856665155, -0.03222163705329], +[-0.2768592923414, -0.03188813642174], +[-0.2717329027016, -0.0315621938062], +[-0.2666064940578, -0.03124372757474], +[-0.2614800633521, -0.03093265777319], +[-0.2563536079727, -0.03062890611832], +[-0.2512271257206, -0.03033239599136], +[-0.2461006147779, -0.03004305243103], +[-0.2409740736777, -0.02976080212639], +[-0.2358475012752, -0.02948557340955], +[-0.2307208967201, -0.02921729624826], +[-0.2255942594306, -0.02895590223849], +[-0.2204675890687, -0.02870132459689], +[-0.2153408855164, -0.0284534981533], +[-0.2102141488538, -0.02821235934328], +[-0.2050873793376, -0.02797784620071], +[-0.1999605773821, -0.02774989835042], +[-0.1948337435397, -0.02752845700099], +[-0.189706878484, -0.02731346493759], +[-0.1845799829931, -0.02710486651505], +[-0.1794530579346, -0.02690260765098], +[-0.1743261042511, -0.02670663581913], +[-0.169199122947, -0.02651690004291], +[-0.1640721150763, -0.02633335088906], +[-0.1589450817313, -0.02615594046153], +[-0.1538180240321, -0.0259846223956], +[-0.1486909431174, -0.02581935185214], +[-0.1435638401353, -0.0256600855121], +[-0.138436716236, -0.02550678157125], +[-0.1333095725644, -0.02535939973506], +[-0.1281824102539, -0.02521790121387], +[-0.123055230421, -0.02508224871821], +[-0.1179280341602, -0.02495240645434], +[-0.11280082254, -0.02482834012007], +[-0.1076735965991, -0.02471001690071], +[-0.1025463573437, -0.02459740546526], +[-0.09741910574498, -0.02449047596279], +[-0.09229184273719, -0.02438920001904], +[-0.08716456921656, -0.02429355073324], +[-0.08203728604034, -0.02420350267505], +[-0.07690999402648, -0.02411903188176], +[-0.07178269395371, -0.02404011585565], +[-0.06665538656203, -0.02396673356155], +[-0.0615280725536, -0.02389886542455], +[-0.05640075259398, -0.02383649332791], +[-0.05127342731367, -0.02377960061112], +[-0.04614609730999, -0.0237281720682], +[-0.04101876314921, -0.02368219394602], +[-0.03589142536896, -0.02364165394296], +[-0.03076408448083, -0.02360654120758], +[-0.02563674097321, -0.02357684633753], +[-0.02050939531426, -0.02355256137858], +[-0.01538204795507, -0.02353367982383], +[-0.01025469933291, -0.02352019661303], +[-0.005127349874608, -0.02351210813209], +[9.554007360407e-17, -0.0235094122127], +[0.005127349874609, -0.0235121081321], +[0.01025469933291, -0.02352019661303], +[0.01538204795507, -0.02353367982383], +[0.02050939531426, -0.02355256137858], +[0.02563674097321, -0.02357684633752], +[0.03076408448083, -0.02360654120758], +[0.03589142536896, -0.02364165394296], +[0.04101876314921, -0.02368219394602], +[0.04614609730999, -0.02372817206819], +[0.05127342731367, -0.02377960061112], +[0.05640075259398, -0.0238364933279], +[0.0615280725536, -0.02389886542455], +[0.06665538656203, -0.02396673356155], +[0.07178269395371, -0.02404011585565], +[0.07690999402648, -0.02411903188176], +[0.08203728604034, -0.02420350267505], +[0.08716456921656, -0.02429355073324], +[0.09229184273719, -0.02438920001904], +[0.09741910574498, -0.02449047596279], +[0.1025463573437, -0.02459740546526], +[0.1076735965991, -0.02471001690071], +[0.11280082254, -0.02482834012007], +[0.1179280341602, -0.02495240645434], +[0.123055230421, -0.0250822487182], +[0.1281824102539, -0.02521790121387], +[0.1333095725644, -0.02535939973506], +[0.138436716236, -0.02550678157125], +[0.1435638401353, -0.0256600855121], +[0.1486909431174, -0.02581935185214], +[0.1538180240321, -0.0259846223956], +[0.1589450817313, -0.02615594046153], +[0.1640721150763, -0.02633335088906], +[0.169199122947, -0.02651690004291], +[0.1743261042511, -0.02670663581913], +[0.1794530579346, -0.02690260765098], +[0.1845799829931, -0.02710486651505], +[0.189706878484, -0.02731346493759], +[0.1948337435397, -0.02752845700099], +[0.1999605773821, -0.02774989835042], +[0.2050873793376, -0.02797784620071], +[0.2102141488538, -0.02821235934328], +[0.2153408855164, -0.0284534981533], +[0.2204675890687, -0.02870132459689], +[0.2255942594306, -0.02895590223849], +[0.2307208967201, -0.02921729624826], +[0.2358475012752, -0.02948557340955], +[0.2409740736777, -0.02976080212639], +[0.2461006147779, -0.03004305243103], +[0.2512271257206, -0.03033239599136], +[0.2563536079727, -0.03062890611832], +[0.2614800633521, -0.03093265777319], +[0.2666064940578, -0.03124372757474], +[0.2717329027016, -0.03156219380613], +[0.2768592923414, -0.03188813642174], +[0.2819856665155, -0.03222163705329], +[0.2871120292789, -0.0325627790162], +[0.2922383852408, -0.032911647315], +[0.2973647396032, -0.03326832864853], +[0.3024910982025, -0.03363291141455], +[0.3076174675502, -0.0340054857136], +[0.3127438548778, -0.03438614335231], +[0.3178702681808, -0.03477497784581], +[0.322996716266, -0.03517208441926], +[0.3281232087992, -0.0355775600084], +[0.3332497563548, -0.03599150325906], +[0.3383763704667, -0.03641401452542], +[0.3435030636807, -0.036845195867], +[0.3486298496079, -0.03728515104419], +[0.3537567429802, -0.03773398551234], +[0.3588837597061, -0.03819180641403], +[0.3640109169278, -0.0386587225697], +[0.3691382330806, -0.03913484446624], +[0.3742657279515, -0.03962028424357], +[0.37939342274, -0.04011515567897], +[0.3845213401192, -0.04061957416903], +[0.3896495042978, -0.04113365670917], +[0.3947779410823, -0.04165752187042], +[0.3999066779399, -0.04219128977335], +[0.4050357440618, -0.04273508205915], +[0.410165170426, -0.04328902185744], +[0.4152949898603, -0.04385323375087], +[0.4204252371055, -0.04442784373623], +[0.4255559488768, -0.04501297918202], +[0.4306871639257, -0.0456087687822], +[0.4358189231005, -0.04621534250609], +[0.4409512694046, -0.04683283154425], +[0.4460842480552, -0.04746136825017], +[0.4512179065379, -0.04810108607771], +[-0.4485032658387, -0.04340006571372], +[-0.4433664833487, -0.0427659752102], +[-0.4382299808592, -0.04214287869228], +[-0.4330942663654, -0.04153073135086], +[-0.4279592951806, -0.04092940370659], +[-0.4228250247013, -0.04033876739125], +[-0.4176914143531, -0.03975869520405], +[-0.4125584255351, -0.03918906116413], +[-0.4074260215625, -0.03862974055922], +[-0.4022941676093, -0.03808060999064], +[-0.3971628306498, -0.03754154741479], +[-0.3920319793989, -0.03701243218131], +[-0.3869015842532, -0.0364931450679], +[-0.3817716172313, -0.03598356831214], +[-0.3766420519145, -0.03548358564028], +[-0.3715128633874, -0.03499308229325], +[-0.3663840281789, -0.03451194505005], +[-0.3612555242041, -0.03404006224858], +[-0.3561273307064, -0.03357732380407], +[-0.3509994282005, -0.03312362122534], +[-0.345871798416, -0.03267884762891], +[-0.3407444242428, -0.03224289775118], +[-0.335617289676, -0.03181566795873], +[-0.3304903797638, -0.031397056257], +[-0.3253636805547, -0.03098696229726], +[-0.3202371790471, -0.03058528738223], +[-0.3151108631401, -0.03019193447026], +[-0.3099847215849, -0.02980680817835], +[-0.3048587439382, -0.02942981478392], +[-0.2997329205166, -0.02906086222564], +[-0.294607242353, -0.02869986010324], +[-0.2894817011533, -0.02834671967651], +[-0.2843562892558, -0.02800135386351], +[-0.2792309995907, -0.02766367723808], +[-0.2741058256424, -0.02733360602672], +[-0.2689807614124, -0.02701105810497], +[-0.2638558013832, -0.02669595299327], +[-0.2587309404851, -0.0263882118524], +[-0.2536061740626, -0.02608775747863], +[-0.2484814978438, -0.02579451429846], +[-0.2433569079099, -0.02550840836319], +[-0.238232400667, -0.02522936734327], +[-0.2331079728183, -0.0249573205225], +[-0.227983621339, -0.0246921987918], +[-0.2228593434505, -0.02443393464383], +[-0.2177351365978, -0.0241824621662], +[-0.2126109984272, -0.02393771703576], +[-0.207486926765, -0.0236996365124], +[-0.2023629195978, -0.02346815943296], +[-0.1972389750539, -0.02324322620528], +[-0.1921150913859, -0.02302477880222], +[-0.186991266954, -0.02281276075582], +[-0.1818675002108, -0.02260711715154], +[-0.1767437896866, -0.02240779462272], +[-0.1716201339765, -0.02221474134502], +[-0.1664965317278, -0.02202790703113], +[-0.1613729816284, -0.02184724292558], +[-0.1562494823965, -0.02167270179973], +[-0.1511260327708, -0.0215042379469], +[-0.1460026315015, -0.0213418071777], +[-0.1408792773428, -0.02118536681556], +[-0.135755969045, -0.02103487569235], +[-0.1306327053487, -0.02089029414429], +[-0.1255094849786, -0.02075158400793], +[-0.1203863066385, -0.02061870861643], +[-0.1152631690071, -0.02049163279593], +[-0.1101400707341, -0.0203703228621], +[-0.1050170104373, -0.02025474661696], +[-0.09989398669969, -0.02014487334575], +[-0.09477099806772, -0.02004067381407], +[-0.08964804304973, -0.01994212026511], +[-0.08452512011495, -0.01984918641716], +[-0.07940222769306, -0.01976184746113], +[-0.07427936417405, -0.01968008005835], +[-0.06915652790864, -0.01960386233851], +[-0.06403371720894, -0.01953317389765], +[-0.05891093034962, -0.01946799579649], +[-0.05378816556927, -0.01940831055867], +[-0.04866542107225, -0.01935410216933], +[-0.04354269503064, -0.01930535607375], +[-0.03841998558656, -0.01926205917607], +[-0.0332972908547, -0.01922419983825], +[-0.02817460892505, -0.01919176787907], +[-0.02305193786584, -0.01916475457334], +[-0.01792927572658, -0.01914315265111], +[-0.01280662054132, -0.01912695629716], +[-0.007683970331973, -0.01911616115046], +[-0.002561323111678, -0.01911076430386], +[0.002561323111679, -0.01911076430387], +[0.007683970331972, -0.01911616115045], +[0.01280662054133, -0.01912695629716], +[0.01792927572658, -0.01914315265111], +[0.02305193786584, -0.01916475457334], +[0.02817460892505, -0.01919176787907], +[0.0332972908547, -0.01922419983825], +[0.03841998558657, -0.01926205917607], +[0.04354269503064, -0.01930535607375], +[0.04866542107226, -0.01935410216933], +[0.05378816556927, -0.01940831055867], +[0.05891093034961, -0.01946799579649], +[0.06403371720894, -0.01953317389765], +[0.06915652790864, -0.01960386233851], +[0.07427936417406, -0.01968008005835], +[0.07940222769306, -0.01976184746113], +[0.08452512011495, -0.01984918641716], +[0.08964804304973, -0.01994212026512], +[0.09477099806772, -0.02004067381407], +[0.09989398669969, -0.02014487334575], +[0.1050170104373, -0.02025474661696], +[0.1101400707341, -0.0203703228621], +[0.115263169007, -0.02049163279593], +[0.1203863066385, -0.02061870861643], +[0.1255094849786, -0.02075158400793], +[0.1306327053487, -0.02089029414429], +[0.135755969045, -0.02103487569235], +[0.1408792773428, -0.02118536681556], +[0.1460026315015, -0.0213418071777], +[0.1511260327708, -0.0215042379469], +[0.1562494823965, -0.02167270179973], +[0.1613729816284, -0.02184724292559], +[0.1664965317278, -0.02202790703113], +[0.1716201339765, -0.02221474134502], +[0.1767437896866, -0.02240779462272], +[0.1818675002108, -0.02260711715154], +[0.186991266954, -0.02281276075582], +[0.1921150913859, -0.02302477880222], +[0.1972389750539, -0.02324322620528], +[0.2023629195978, -0.02346815943296], +[0.207486926765, -0.0236996365124], +[0.2126109984272, -0.02393771703576], +[0.2177351365978, -0.0241824621662], +[0.2228593434505, -0.02443393464383], +[0.227983621339, -0.0246921987918], +[0.2331079728184, -0.02495732052233], +[0.238232400667, -0.02522936734327], +[0.2433569079099, -0.02550840836319], +[0.2484814978438, -0.02579451429846], +[0.2536061740626, -0.02608775747863], +[0.2587309404851, -0.0263882118524], +[0.2638558013832, -0.02669595299327], +[0.2689807614124, -0.02701105810497], +[0.2741058256424, -0.02733360602672], +[0.2792309995907, -0.02766367723808], +[0.2843562892558, -0.02800135386351], +[0.2894817011533, -0.02834671967651], +[0.294607242353, -0.02869986010324], +[0.2997329205166, -0.02906086222564], +[0.3048587439382, -0.02942981478392], +[0.3099847215849, -0.02980680817835], +[0.3151108631401, -0.03019193447026], +[0.3202371790471, -0.03058528738223], +[0.3253636805547, -0.03098696229726], +[0.3304903797638, -0.031397056257], +[0.335617289676, -0.03181566795873], +[0.3407444242428, -0.03224289775118], +[0.345871798416, -0.03267884762891], +[0.3509994282005, -0.03312362122534], +[0.3561273307064, -0.03357732380407], +[0.3612555242041, -0.03404006224858], +[0.3663840281789, -0.03451194505005], +[0.3715128633874, -0.03499308229325], +[0.3766420519145, -0.03548358564028], +[0.3817716172313, -0.03598356831214], +[0.3869015842532, -0.0364931450679], +[0.3920319793989, -0.03701243218131], +[0.3971628306498, -0.03754154741479], +[0.4022941676093, -0.03808060999064], +[0.4074260215625, -0.03862974055922], +[0.4125584255351, -0.03918906116413], +[0.4176914143531, -0.03975869520405], +[0.4228250247013, -0.04033876739125], +[0.4279592951806, -0.04092940370659], +[0.4330942663654, -0.04153073135086], +[0.4382299808592, -0.04214287869228], +[0.4433664833487, -0.0427659752102], +[0.4485032658444, -0.04340006573725], +[-0.4457846483746, -0.03869134192271], +[-0.4406443877294, -0.03806278131087], +[-0.4355045794062, -0.03744520779637], +[-0.4303657126823, -0.03683848617582], +[-0.4252277433245, -0.03624248973769], +[-0.4200906290578, -0.03565709283136], +[-0.4149543295144, -0.03508217092172], +[-0.4098188061816, -0.03451760063999], +[-0.4046840223476, -0.0339632598312], +[-0.3995499430476, -0.033419027598], +[-0.3944165350083, -0.03288478434136], +[-0.3892837665925, -0.03236041179797], +[-0.3841516077426, -0.03184579307461], +[-0.3790200299254, -0.03134081267965], +[-0.3738890060751, -0.03084535655172], +[-0.3687585105382, -0.03035931208575], +[-0.3636285190173, -0.02988256815651], +[-0.3584990085168, -0.02941501513973], +[-0.3533699572878, -0.02895654493105], +[-0.3482413447745, -0.02850705096275], +[-0.3431131515614, -0.02806642821862], +[-0.3379853593207, -0.02763457324684], +[-0.3328579507618, -0.02721138417122], +[-0.3277309095806, -0.02679676070072], +[-0.3226042204107, -0.0263906041376], +[-0.3174778687752, -0.02599281738398], +[-0.3123518410406, -0.02560330494731], +[-0.3072261243705, -0.02522197294448], +[-0.3021007066821, -0.02484872910499], +[-0.2969755766025, -0.02448348277291], +[-0.291850723428, -0.02412614490818], +[-0.2867261370828, -0.02377662808688], +[-0.2816018080807, -0.02343484650085], +[-0.2764777274873, -0.02310071595664], +[-0.2713538868836, -0.02277415387385], +[-0.2662302783314, -0.0224550792826], +[-0.2611068943391, -0.02214341282155], +[-0.2559837278301, -0.02183907673408], +[-0.2508607721117, -0.0215419948652], +[-0.2457380208453, -0.02125209265772], +[-0.2406154680182, -0.02096929714821], +[-0.2354931079166, -0.0206935369628], +[-0.2303709351, -0.02042474231272], +[-0.2252489443764, -0.02016284498983], +[-0.2201271307792, -0.01990777836187], +[-0.2150054895451, -0.01965947736787], +[-0.209884016093, -0.01941787851327], +[-0.2047627060046, -0.01918291986524], +[-0.1996415550054, -0.01895454104788], +[-0.1945205589474, -0.01873268323749], +[-0.1893997137922, -0.01851728915792], +[-0.1842790155961, -0.0183083030759], +[-0.1791584604956, -0.01810567079656], +[-0.1740380446934, -0.01790933965899], +[-0.1689177644466, -0.01771925853186], +[-0.1637976160547, -0.01753537780928], +[-0.1586775958492, -0.01735764940666], +[-0.1535577001834, -0.01718602675677], +[-0.1484379254241, -0.0170204648059], +[-0.1433182679427, -0.01686092001023], +[-0.1381987241084, -0.01670735033225], +[-0.1330792902813, -0.01655971523739], +[-0.1279599628066, -0.01641797569078], +[-0.1228407380093, -0.01628209415416], +[-0.1177216121898, -0.01615203458296], +[-0.1126025816199, -0.01602776242347], +[-0.1074836425395, -0.01590924461023], +[-0.102364791154, -0.01579644956353], +[-0.09724602363218, -0.01568934718701], +[-0.09212733610425, -0.01558790886552], +[-0.08700872466112, -0.01549210746296], +[-0.08189018535353, -0.01540191732041], +[-0.07677171419194, -0.01531731425427], +[-0.07165330714668, -0.01523827555457], +[-0.06653496014861, -0.01516477998345], +[-0.0614166690901, -0.01509680777369], +[-0.05629842982633, -0.0150343406274], +[-0.05118023817698, -0.0149773617148], +[-0.04606208992811, -0.01492585567313], +[-0.04094398083442, -0.01487980860566], +[-0.03582590662166, -0.01483920808078], +[-0.03070786298934, -0.01480404313125], +[-0.02558984561353, -0.01477430425349], +[-0.02047185014994, -0.014749983407], +[-0.01535387223711, -0.01473107401386], +[-0.01023590749961, -0.0147175709583], +[-0.005117951551558, -0.01470947058646], +[6.369338240271e-17, -0.01470677070609], +[0.005117951551562, -0.01470947058647], +[0.01023590749961, -0.0147175709583], +[0.0153538722371, -0.01473107401385], +[0.02047185014994, -0.014749983407], +[0.02558984561352, -0.01477430425349], +[0.03070786298934, -0.01480404313125], +[0.03582590662166, -0.01483920808078], +[0.04094398083442, -0.01487980860566], +[0.04606208992811, -0.01492585567313], +[0.05118023817698, -0.0149773617148], +[0.05629842982633, -0.0150343406274], +[0.0614166690901, -0.01509680777369], +[0.06653496014861, -0.01516477998344], +[0.07165330714668, -0.01523827555457], +[0.07677171419194, -0.01531731425427], +[0.08189018535354, -0.01540191732042], +[0.08700872466112, -0.01549210746296], +[0.09212733610425, -0.01558790886552], +[0.09724602363218, -0.01568934718701], +[0.102364791154, -0.01579644956353], +[0.1074836425395, -0.01590924461023], +[0.1126025816199, -0.01602776242347], +[0.1177216121898, -0.01615203458296], +[0.1228407380093, -0.01628209415416], +[0.1279599628066, -0.01641797569078], +[0.1330792902813, -0.01655971523739], +[0.1381987241084, -0.01670735033225], +[0.1433182679427, -0.01686092001023], +[0.1484379254241, -0.0170204648059], +[0.1535577001834, -0.01718602675677], +[0.1586775958492, -0.01735764940666], +[0.1637976160547, -0.01753537780928], +[0.1689177644466, -0.01771925853186], +[0.1740380446934, -0.01790933965899], +[0.1791584604956, -0.01810567079656], +[0.1842790155961, -0.0183083030759], +[0.1893997137922, -0.01851728915792], +[0.1945205589474, -0.01873268323749], +[0.1996415550054, -0.01895454104788], +[0.2047627060046, -0.01918291986524], +[0.209884016093, -0.01941787851327], +[0.2150054895451, -0.01965947736787], +[0.2201271307792, -0.01990777836187], +[0.2252489443764, -0.02016284498983], +[0.2303709351, -0.02042474231273], +[0.2354931079166, -0.0206935369628], +[0.2406154680182, -0.02096929714821], +[0.2457380208453, -0.02125209265772], +[0.2508607721117, -0.0215419948652], +[0.2559837278301, -0.02183907673408], +[0.2611068943391, -0.02214341282155], +[0.2662302783314, -0.0224550792826], +[0.2713538868836, -0.02277415387387], +[0.2764777274873, -0.02310071595664], +[0.2816018080807, -0.02343484650085], +[0.2867261370828, -0.02377662808688], +[0.291850723428, -0.02412614490818], +[0.2969755766025, -0.02448348277291], +[0.3021007066821, -0.02484872910499], +[0.3072261243705, -0.02522197294436], +[0.3123518410406, -0.02560330494731], +[0.3174778687752, -0.02599281738398], +[0.3226042204107, -0.0263906041376], +[0.3277309095806, -0.02679676070072], +[0.3328579507618, -0.02721138417122], +[0.3379853593207, -0.02763457324684], +[0.3431131515614, -0.02806642821862], +[0.3482413447745, -0.02850705096275], +[0.3533699572878, -0.02895654493105], +[0.3584990085168, -0.02941501513973], +[0.3636285190173, -0.02988256815651], +[0.3687585105382, -0.03035931208575], +[0.3738890060751, -0.03084535655172], +[0.3790200299254, -0.03134081267965], +[0.3841516077426, -0.03184579307461], +[0.3892837665925, -0.03236041179797], +[0.3944165350083, -0.03288478434136], +[0.3995499430476, -0.033419027598], +[0.4046840223476, -0.0339632598312], +[0.4098188061816, -0.03451760063999], +[0.4149543295144, -0.03508217092172], +[0.4200906290578, -0.03565709283136], +[0.4252277433245, -0.03624248973769], +[0.4303657126823, -0.03683848617582], +[0.4355045794062, -0.03744520779637], +[0.4406443877294, -0.03806278131087], +[0.4457851837043, -0.03869133410773], +[-0.4430615864798, -0.03397461942531], +[-0.4379180704143, -0.03335197934927], +[-0.4327751713309, -0.03274001006778], +[-0.4276333654437, -0.03213879653784], +[-0.4224926088983, -0.03154821471299], +[-0.417352859678, -0.03096814155901], +[-0.4122140775565, -0.03039845510691], +[-0.407076224048, -0.02983903450242], +[-0.4019392623571, -0.02928976005212], +[-0.3968031573275, -0.02875051326639], +[-0.3916678753899, -0.02822117689923], +[-0.3865333845097, -0.02770163498512], +[-0.3813996541344, -0.02719177287291], +[-0.3762666551406, -0.02669147725709], +[-0.3711343597811, -0.02620063620636], +[-0.3660027416328, -0.02571913918973], +[-0.3608717755437, -0.02524687710021], +[-0.3557414375814, -0.02478374227631], +[-0.3506117049819, -0.02432962852141], +[-0.3454825560984, -0.02388443112105], +[-0.3403539703518, -0.02344804685846], +[-0.3352259281811, -0.02302037402819], +[-0.3300984109955, -0.02260131244821], +[-0.3249714011269, -0.0221907634704], +[-0.3198448817837, -0.02178862998957], +[-0.3147188370055, -0.02139481645124], +[-0.309593251619, -0.02100922885811], +[-0.3044681111952, -0.02063177477543], +[-0.2993434020073, -0.02026236333526], +[-0.2942191109906, -0.01990090523989], +[-0.2890952257028, -0.01954731276423], +[-0.2839717342862, -0.01920149975751], +[-0.2788486254308, -0.01886338164422], +[-0.2737258883387, -0.01853287542441], +[-0.2686035126899, -0.01820989967334], +[-0.2634814886096, -0.01789437454071], +[-0.2583598066358, -0.01758622174934], +[-0.2532384576898, -0.01728536459347], +[-0.2481174330462, -0.01699172793671], +[-0.2429967243055, -0.01670523820966], +[-0.237876323367, -0.01642582340732], +[-0.2327562224039, -0.01615341308617], +[-0.2276364138382, -0.01588793836117], +[-0.2225168903184, -0.01562933190258], +[-0.2173976446971, -0.01537752793263], +[-0.2122786700104, -0.01513246222214], +[-0.2071599594582, -0.01489407208709], +[-0.2020415063854, -0.0146622963851], +[-0.1969233042649, -0.01443707551191], +[-0.1918053466805, -0.01421835139808], +[-0.186687627312, -0.01400606750519], +[-0.1815701399204, -0.01380016882271], +[-0.1764528783346, -0.01360060186455], +[-0.1713358364388, -0.0134073146657], +[-0.1662190081609, -0.01322025677911], +[-0.1611023874614, -0.01303937927247], +[-0.1559859683244, -0.01286463472525], +[-0.1508697447474, -0.01269597722574], +[-0.1457537107338, -0.01253336236822], +[-0.1406378602854, -0.01237674725025], +[-0.1355221873952, -0.01222609047008], +[-0.1304066860417, -0.01208135212417], +[-0.1252913501836, -0.01194249380482], +[-0.120176173755, -0.01180947859793], +[-0.1150611506614, -0.01168227108086], +[-0.1099462747764, -0.01156083732042], +[-0.1048315399385, -0.01144514487101], +[-0.09971693994935, -0.01133516277277], +[-0.09460246857161, -0.01123086154997], +[-0.08948811952783, -0.01113221320942], +[-0.08437388649967, -0.011039191239], +[-0.07925976312758, -0.01095177060636], +[-0.07414574301088, -0.0108699277576], +[-0.06903181970833, -0.01079364061614], +[-0.06391798673895, -0.01072288858168], +[-0.05880423758328, -0.01065765252918], +[-0.05369056568493, -0.010597914808], +[-0.04857696445245, -0.01054365924108], +[-0.04346342726142, -0.01049487112421], +[-0.03834994745692, -0.0104515372254], +[-0.03323651835602, -0.01041364578428], +[-0.02812313325072, -0.0103811865116], +[-0.02300978541083, -0.01035415058882], +[-0.0178964680872, -0.01033253066769], +[-0.01278317451493, -0.01031632086997], +[-0.007669897916799, -0.01030551678721], +[-0.002556631506729, -0.01030011548053], +[0.002556631506728, -0.01030011548053], +[0.0076698979168, -0.01030551678721], +[0.01278317451493, -0.01031632086997], +[0.0178964680872, -0.01033253066769], +[0.02300978541084, -0.01035415058882], +[0.02812313325072, -0.0103811865116], +[0.03323651835602, -0.01041364578428], +[0.03834994745691, -0.0104515372254], +[0.04346342726142, -0.01049487112421], +[0.04857696445245, -0.01054365924108], +[0.05369056568493, -0.010597914808], +[0.05880423758328, -0.01065765252918], +[0.06391798673895, -0.01072288858168], +[0.06903181970833, -0.01079364061614], +[0.07414574301088, -0.0108699277576], +[0.07925976312758, -0.01095177060636], +[0.08437388649967, -0.011039191239], +[0.08948811952783, -0.01113221320942], +[0.09460246857161, -0.01123086154997], +[0.09971693994934, -0.01133516277277], +[0.1048315399385, -0.01144514487101], +[0.1099462747764, -0.01156083732042], +[0.1150611506614, -0.01168227108086], +[0.120176173755, -0.01180947859793], +[0.1252913501836, -0.01194249380482], +[0.1304066860417, -0.01208135212417], +[0.1355221873952, -0.01222609047008], +[0.1406378602854, -0.01237674725025], +[0.1457537107338, -0.01253336236822], +[0.1508697447474, -0.01269597722575], +[0.1559859683244, -0.01286463472525], +[0.1611023874614, -0.01303937927247], +[0.1662190081609, -0.01322025677911], +[0.1713358364388, -0.0134073146657], +[0.1764528783346, -0.01360060186455], +[0.1815701399204, -0.01380016882271], +[0.186687627312, -0.01400606750519], +[0.1918053466805, -0.01421835139808], +[0.1969233042649, -0.01443707551191], +[0.2020415063854, -0.0146622963851], +[0.2071599594582, -0.01489407208709], +[0.2122786700104, -0.01513246222214], +[0.2173976446971, -0.01537752793263], +[0.2225168903184, -0.01562933190258], +[0.2276364138382, -0.01588793836117], +[0.2327562224039, -0.01615341308617], +[0.237876323367, -0.01642582340732], +[0.2429967243055, -0.01670523820966], +[0.2481174330462, -0.01699172793671], +[0.2532384576898, -0.01728536459347], +[0.2583598066358, -0.01758622174934], +[0.2634814886096, -0.01789437454071], +[0.2686035126899, -0.01820989967334], +[0.2737258883387, -0.01853287542441], +[0.2788486254308, -0.01886338164422], +[0.2839717342862, -0.01920149975751], +[0.2890952257028, -0.01954731276423], +[0.2942191109906, -0.01990090523989], +[0.2993434020073, -0.02026236333526], +[0.3044681111952, -0.02063177477543], +[0.309593251619, -0.02100922885811], +[0.3147188370055, -0.02139481645124], +[0.3198448817837, -0.02178862998957], +[0.3249714011269, -0.0221907634704], +[0.3300984109955, -0.02260131244821], +[0.3352259281811, -0.02302037402819], +[0.3403539703518, -0.02344804685846], +[0.3454825560984, -0.02388443112105], +[0.3506117049819, -0.02432962852141], +[0.3557414375814, -0.02478374227631], +[0.3608717755437, -0.02524687710021], +[0.3660027416328, -0.02571913918973], +[0.3711343597811, -0.02620063620636], +[0.3762666551406, -0.02669147725709], +[0.3813996541344, -0.02719177287291], +[0.3865333845097, -0.02770163498512], +[0.3916678753899, -0.02822117689923], +[0.3968031573275, -0.02875051326639], +[0.4019392623571, -0.02928976005212], +[0.407076224048, -0.02983903450242], +[0.4122140775565, -0.03039845510691], +[0.417352859678, -0.03096814155901], +[0.4224926088983, -0.03154821471299], +[0.4276333654437, -0.03213879653784], +[0.4327751713309, -0.03274001006778], +[0.4379180704143, -0.03335197934927], +[0.4430615864852, -0.0339746194451], +[-0.4403341449902, -0.02925070171376], +[-0.4351876395514, -0.02863376011021], +[-0.4300418619479, -0.02802747472215], +[-0.4248973271674, -0.02743185001722], +[-0.4197539916611, -0.02684676451456], +[-0.4146118136025, -0.02627209769848], +[-0.4094707528426, -0.02570773006984], +[-0.4043307708631, -0.02515354319429], +[-0.3991918307292, -0.02460941974736], +[-0.3940538970412, -0.02407524355645], +[-0.3889169358861, -0.02355089963996], +[-0.3837809147876, -0.0230362742436], +[-0.3786458026571, -0.02253125487395], +[-0.3735115697435, -0.02203573032949], +[-0.3683781875839, -0.0215495907291], +[-0.363245628954, -0.02107272753826], +[-0.3581138678185, -0.02060503359297], +[-0.3529828792827, -0.02014640312154], +[-0.3478526395436, -0.01969673176444], +[-0.3427231258427, -0.01925591659215], +[-0.3375943164185, -0.01882385612133], +[-0.3324661904602, -0.01840045032922], +[-0.3273387280623, -0.01798560066653], +[-0.3222119101803, -0.01757921006886], +[-0.3170857185862, -0.01718118296668], +[-0.311960135827, -0.01679142529418], +[-0.306835145182, -0.01640984449677], +[-0.3017107306232, -0.0160363495376], +[-0.2965868767752, -0.01567085090308], +[-0.2914635688777, -0.01531326060737], +[-0.2863407927475, -0.01496349219616], +[-0.2812185347436, -0.01462146074958], +[-0.2760967817317, -0.01428708288446], +[-0.2709755210511, -0.0139602767559], +[-0.2658547404822, -0.01364096205833], +[-0.2607344282157, -0.01332906002604], +[-0.2556145728223, -0.01302449343319], +[-0.2504951632243, -0.01272718659351], +[-0.2453761886683, -0.01243706535957], +[-0.2402576386982, -0.01215405712177], +[-0.2351395031308, -0.01187809080705], +[-0.2300217720314, -0.01160909687738], +[-0.2249044356911, -0.01134700732802], +[-0.2197874846051, -0.01109175568569], +[-0.2146709094518, -0.01084327700653], +[-0.2095547010738, -0.010601507874], +[-0.2044388504589, -0.01036638639671], +[-0.1993233487232, -0.01013785220615], +[-0.1942081870941, -0.009915846454469], +[-0.1890933568955, -0.009700311812134], +[-0.183978849533, -0.009491192465687], +[-0.1788646564804, -0.009288434115462], +[-0.1737507692673, -0.009091983973357], +[-0.1686371794675, -0.008901790760642], +[-0.1635238786879, -0.008717804705817], +[-0.1584108585588, -0.008539977542532], +[-0.1532981107248, -0.008368262507582], +[-0.148185626836, -0.008202614338959], +[-0.1430733985413, -0.008042989274001], +[-0.1379614174808, -0.00788934504761], +[-0.1328496752797, -0.007741640890556], +[-0.1277381635435, -0.007599837527857], +[-0.1226268738527, -0.007463897177334], +[-0.1175157977586, -0.007333783548022], +[-0.1124049267803, -0.007209461838978], +[-0.1072942524011, -0.007090898737942], +[-0.1021837660667, -0.006978062420177], +[-0.09707345918285, -0.006870922547368], +[-0.09196332311435, -0.006769450266616], +[-0.08685334918401, -0.006673618209486], +[-0.08174352867228, -0.006583400491162], +[-0.07663385281723, -0.006498772709638], +[-0.07152431281502, -0.006419711945004], +[-0.06641489982063, -0.006346196758779], +[-0.06130560494906, -0.006278207193319], +[-0.05619641927681, -0.006215724771278], +[-0.05108733384364, -0.00615873249512], +[-0.04597833965469, -0.006107214846687], +[-0.04086942768275, -0.006061157786816], +[-0.03576058887089, -0.006020548755007], +[-0.03065181413517, -0.005985376669115], +[-0.02554309436767, -0.005955631925113], +[-0.02043442043958, -0.005931306396865], +[-0.01532578320446, -0.005912393435952], +[-0.01021717350163, -0.005898887871521], +[-0.005108582159686, -0.005890786010193], +[6.369338240271e-17, -0.005888085635964], +[0.005108582159701, -0.00589078601021], +[0.01021717350162, -0.005898887871519], +[0.01532578320445, -0.00591239343595], +[0.02043442043958, -0.005931306396867], +[0.02554309436768, -0.005955631925115], +[0.03065181413517, -0.005985376669115], +[0.03576058887089, -0.006020548755006], +[0.04086942768276, -0.006061157786817], +[0.04597833965469, -0.006107214846686], +[0.05108733384364, -0.006158732495119], +[0.05619641927681, -0.006215724771277], +[0.06130560494906, -0.006278207193319], +[0.06641489982063, -0.006346196758778], +[0.07152431281502, -0.006419711945004], +[0.07663385281723, -0.006498772709639], +[0.08174352867228, -0.006583400491162], +[0.08685334918401, -0.006673618209486], +[0.09196332311435, -0.006769450266609], +[0.09707345918285, -0.006870922547368], +[0.1021837660667, -0.006978062420177], +[0.1072942524011, -0.007090898737942], +[0.1124049267803, -0.007209461838978], +[0.1175157977586, -0.007333783548022], +[0.1226268738527, -0.007463897177334], +[0.1277381635435, -0.007599837527869], +[0.1328496752797, -0.007741640890556], +[0.1379614174808, -0.00788934504761], +[0.1430733985413, -0.008042989274001], +[0.148185626836, -0.008202614338959], +[0.1532981107248, -0.008368262507582], +[0.1584108585588, -0.008539977542532], +[0.1635238786879, -0.008717804705817], +[0.1686371794675, -0.008901790760642], +[0.1737507692673, -0.009091983973357], +[0.1788646564804, -0.009288434115462], +[0.183978849533, -0.009491192465687], +[0.1890933568955, -0.009700311812134], +[0.1942081870941, -0.009915846454469], +[0.1993233487232, -0.01013785220615], +[0.2044388504589, -0.01036638639671], +[0.2095547010738, -0.010601507874], +[0.2146709094518, -0.01084327700653], +[0.2197874846051, -0.01109175568569], +[0.2249044356911, -0.01134700732802], +[0.2300217720314, -0.01160909687738], +[0.2351395031308, -0.01187809080705], +[0.2402576386982, -0.01215405712177], +[0.2453761886683, -0.01243706535957], +[0.2504951632243, -0.01272718659351], +[0.2556145728223, -0.01302449343319], +[0.2607344282157, -0.01332906002604], +[0.2658547404822, -0.01364096205833], +[0.2709755210511, -0.0139602767559], +[0.2760967817317, -0.01428708288446], +[0.2812185347436, -0.01462146074958], +[0.2863407927475, -0.01496349219616], +[0.2914635688777, -0.01531326060737], +[0.2965868767752, -0.01567085090308], +[0.3017107306232, -0.0160363495376], +[0.306835145182, -0.01640984449677], +[0.311960135827, -0.01679142529418], +[0.3170857185862, -0.01718118296668], +[0.3222119101803, -0.01757921006886], +[0.3273387280623, -0.01798560066653], +[0.3324661904602, -0.01840045032922], +[0.3375943164185, -0.01882385612133], +[0.3427231258427, -0.01925591659215], +[0.3478526395436, -0.01969673176444], +[0.3529828792827, -0.02014640312154], +[0.3581138678185, -0.02060503359297], +[0.363245628954, -0.02107272753826], +[0.3683781875839, -0.0215495907291], +[0.3735115697435, -0.02203573032949], +[0.3786458026571, -0.02253125487395], +[0.3837809147876, -0.0230362742436], +[0.3889169358861, -0.02355089963996], +[0.3940538970412, -0.02407524355645], +[0.3991918307292, -0.02460941974736], +[0.4043307708631, -0.02515354319429], +[0.4094707528426, -0.02570773006984], +[0.4146118136025, -0.02627209769848], +[0.4197539916611, -0.02684676451456], +[0.4248973271674, -0.02743185001722], +[0.4300418619479, -0.02802747472215], +[0.4351876395514, -0.02863376011021], +[0.4403341449962, -0.02925070173495], +[-0.4376025303998, -0.02451952405167], +[-0.4324532022632, -0.02390831244874], +[-0.4273047556406, -0.0233077890611], +[-0.4221576995314, -0.02271783229814], +[-0.4170119906214, -0.02213832314837], +[-0.4118675872075, -0.02156914351975], +[-0.4067244491556, -0.02101017628975], +[-0.4015825378563, -0.02046130535239], +[-0.3964418161807, -0.01992241566234], +[-0.3913022484354, -0.01939339327611], +[-0.3861638003157, -0.01887412539055], +[-0.3810264388603, -0.01836450037866], +[-0.3758901324037, -0.01786440782291], +[-0.3707548505301, -0.017373738546], +[-0.3656205640264, -0.01689238463945], +[-0.3604872448357, -0.01642023948982], +[-0.3553548660107, -0.0159571978029], +[-0.350223401668, -0.01550315562587], +[-0.3450928269425, -0.01505801036754], +[-0.3399631179423, -0.01462166081686], +[-0.3348342517045, -0.01419400715962], +[-0.3297062061515, -0.01377495099366], +[-0.3245789600482, -0.01336439534257], +[-0.3194524929598, -0.01296224466797], +[-0.3143267852112, -0.01256840488045], +[-0.3092018178463, -0.01218278334941], +[-0.304077572589, -0.01180528891165], +[-0.2989540318052, -0.01143583187898], +[-0.2938311784654, -0.01107432404484], +[-0.288708996109, -0.01072067869009], +[-0.2835874688092, -0.01037481058786], +[-0.2784665811389, -0.01003663600782], +[-0.2733463181388, -0.009706072719596], +[-0.2682266652848, -0.009383039995709], +[-0.2631076084585, -0.009067458613871], +[-0.257989140445, -0.008759236785285], +[-0.2528712092886, -0.008458308552949], +[-0.2477538009445, -0.008164642663275], +[-0.242637071638, -0.007878114832816], +[-0.2375207953728, -0.007598654612199], +[-0.2324050373761, -0.00732620208191], +[-0.2272897856102, -0.007060688584893], +[-0.2221750282404, -0.006802046973696], +[-0.2170607536143, -0.006550211609873], +[-0.2119469502422, -0.006305118363237], +[-0.2068336067792, -0.006066704610997], +[-0.201720712008, -0.005834909236799], +[-0.196608254822, -0.005609672629695], +[-0.1914962242108, -0.005390936683059], +[-0.186384609245, -0.005178644793468], +[-0.1812733990634, -0.004972741859565], +[-0.1761625828603, -0.004773174280907], +[-0.1710521498734, -0.004579889956833], +[-0.1659420893736, -0.004392838285336], +[-0.1608323906549, -0.004211970161992], +[-0.1557230430248, -0.004037237978781], +[-0.1506140357965, -0.003868595623295], +[-0.1455053582808, -0.003705998477527], +[-0.1403969997795, -0.003549403417061], +[-0.1352889495791, -0.00339876881017], +[-0.1301811969452, -0.003254054516996], +[-0.1250737311181, -0.003115221888789], +[-0.1199665413079, -0.002982233767179], +[-0.1148596166913, -0.00285505448356], +[-0.1097529464085, -0.002733649858459], +[-0.1046465195609, -0.002617987201013], +[-0.09954032520877, -0.002508035308477], +[-0.09443435237004, -0.002403764465786], +[-0.08932859001941, -0.00230514644517], +[-0.08422302708773, -0.002212154505807], +[-0.07911765246196, -0.002124763393527], +[-0.07401245498555, -0.002042949340553], +[-0.06890742345911, -0.001966690065277], +[-0.06380254664155, -0.001895964772071], +[-0.05869781325149, -0.001830754151133], +[-0.05359321196899, -0.001771040378348], +[-0.04848873143757, -0.001716807115191], +[-0.04338436026651, -0.001668039508631], +[-0.0382800870334, -0.001624724191071], +[-0.03317590028685, -0.001586849280289], +[-0.0280717885495, -0.001554404379402], +[-0.02296774032107, -0.001527380576835], +[-0.0178637440817, -0.001505770446299], +[-0.01275978829527, -0.001489568046778], +[-0.007655861412929, -0.001478768922511], +[-0.002551951876738, -0.001473370102993], +[0.002551951876748, -0.001473370102999], +[0.00765586141294, -0.001478768922513], +[0.01275978829526, -0.001489568046776], +[0.01786374408169, -0.001505770446299], +[0.02296774032108, -0.001527380576835], +[0.0280717885495, -0.001554404379402], +[0.03317590028685, -0.001586849280289], +[0.0382800870334, -0.001624724191071], +[0.04338436026651, -0.001668039508631], +[0.04848873143757, -0.001716807115191], +[0.05359321196899, -0.001771040378349], +[0.05869781325149, -0.001830754151133], +[0.06380254664155, -0.001895964772071], +[0.06890742345911, -0.001966690065277], +[0.07401245498555, -0.002042949340553], +[0.07911765246196, -0.002124763393527], +[0.08422302708773, -0.002212154505807], +[0.08932859001941, -0.002305146445169], +[0.09443435237004, -0.002403764465786], +[0.09954032520877, -0.002508035308477], +[0.1046465195609, -0.002617987201013], +[0.1097529464085, -0.002733649858459], +[0.1148596166913, -0.00285505448356], +[0.1199665413079, -0.002982233767179], +[0.1250737311181, -0.003115221888783], +[0.1301811969452, -0.003254054516997], +[0.1352889495791, -0.00339876881017], +[0.1403969997795, -0.003549403417061], +[0.1455053582808, -0.003705998477527], +[0.1506140357965, -0.003868595623295], +[0.1557230430248, -0.004037237978782], +[0.1608323906549, -0.004211970161953], +[0.1659420893736, -0.004392838285336], +[0.1710521498734, -0.004579889956833], +[0.1761625828603, -0.004773174280907], +[0.1812733990634, -0.004972741859565], +[0.186384609245, -0.005178644793468], +[0.1914962242108, -0.005390936683059], +[0.196608254822, -0.005609672629695], +[0.201720712008, -0.005834909236799], +[0.2068336067792, -0.006066704610997], +[0.2119469502422, -0.006305118363237], +[0.2170607536143, -0.006550211609873], +[0.2221750282404, -0.006802046973696], +[0.2272897856102, -0.007060688584893], +[0.2324050373761, -0.00732620208191], +[0.2375207953728, -0.007598654612198], +[0.242637071638, -0.007878114832816], +[0.2477538009445, -0.008164642663275], +[0.2528712092886, -0.008458308552949], +[0.257989140445, -0.008759236785285], +[0.2631076084585, -0.009067458613871], +[0.2682266652848, -0.009383039995709], +[0.2733463181388, -0.009706072719597], +[0.2784665811389, -0.01003663600782], +[0.2835874688092, -0.01037481058786], +[0.288708996109, -0.01072067869009], +[0.2938311784654, -0.01107432404484], +[0.2989540318052, -0.01143583187898], +[0.304077572589, -0.01180528891165], +[0.3092018178463, -0.01218278334941], +[0.3143267852112, -0.01256840488045], +[0.3194524929598, -0.01296224466797], +[0.3245789600482, -0.01336439534257], +[0.3297062061515, -0.01377495099366], +[0.3348342517045, -0.01419400715962], +[0.3399631179423, -0.01462166081686], +[0.3450928269425, -0.01505801036755], +[0.350223401668, -0.01550315562587], +[0.3553548660107, -0.0159571978029], +[0.3604872448357, -0.01642023948982], +[0.3656205640264, -0.01689238463945], +[0.3707548505301, -0.017373738546], +[0.3758901324037, -0.01786440782291], +[0.3810264388603, -0.01836450037866], +[0.3861638003157, -0.01887412539055], +[0.3913022484354, -0.01939339327611], +[0.3964418161807, -0.01992241566234], +[0.4015825378563, -0.02046130535239], +[0.4067244491556, -0.02101017628975], +[0.4118675872075, -0.02156914351975], +[0.4170119906214, -0.02213832314837], +[0.4221576995314, -0.02271783229814], +[0.4273047556406, -0.0233077890611], +[0.4324532022632, -0.02390831244874], +[0.4376030841982, -0.02451952205435], +[-0.4348668958448, -0.01978075545642], +[-0.4297148646885, -0.01917582336922], +[-0.4245639558986, -0.01858113855042], +[-0.4194145834073, -0.01799692724593], +[-0.4142667040662, -0.0174230728203], +[-0.4091202762305, -0.01685945951325], +[-0.4039752597196, -0.01630597248844], +[-0.3988316157759, -0.01576249787947], +[-0.393689307023, -0.01522892283306], +[-0.3885482974231, -0.01470513554953], +[-0.3834085522342, -0.01419102532078], +[-0.378270037966, -0.01368648256564], +[-0.3731327223365, -0.01319139886293], +[-0.3679965742279, -0.01270566698216], +[-0.3628615636429, -0.01222918091206], +[-0.3577276616605, -0.01176183588701], +[-0.3525948403929, -0.01130352841141], +[-0.3474630729417, -0.01085415628225], +[-0.3423323333556, -0.01041361860981], +[-0.337202596588, -0.009981815836687], +[-0.3320738384551, -0.009558649755197], +[-0.3269460355948, -0.009144023523284], +[-0.3218191654268, -0.008737841679005], +[-0.3166932061129, -0.008340010153681], +[-0.3115681365181, -0.007950436283805], +[-0.306443936173, -0.007569028821799], +[-0.301320585237, -0.007195697945683], +[-0.2961980644624, -0.006830355267747], +[-0.2910763551592, -0.006472913842298], +[-0.2859554391615, -0.006123288172552], +[-0.2808352987945, -0.005781394216741], +[-0.275715914749, -0.005447149550467], +[-0.2705972745363, -0.005120476838763], +[-0.2654793673989, -0.004801294202798], +[-0.2603621808767, -0.004489509206483], +[-0.2552456757531, -0.004185018555658], +[-0.2501297637298, -0.003887755725763], +[-0.2450143770648, -0.003597794511035], +[-0.2399001154568, -0.003314983112548], +[-0.2347862265379, -0.00303913497332], +[-0.2296729570455, -0.002770259056762], +[-0.2245602928434, -0.002508287563032], +[-0.2194482199754, -0.0022531541792], +[-0.2143367246463, -0.002004794080403], +[-0.2092257932037, -0.001763143930221], +[-0.204115412121, -0.001528141881018], +[-0.1990055679811, -0.001299727574182], +[-0.1938962474615, -0.001077842140211], +[-0.1887874373196, -0.0008624281988923], +[-0.1836791243799, -0.0006534298591988], +[-0.1785712955209, -0.0004507927193151], +[-0.1734639376639, -0.0002544638665651], +[-0.1683570377621, -6.439187733483e-05], +[-0.1632505827908, 0.0001194731830339], +[-0.1581445597378, 0.0002971797602439], +[-0.1530389555954, 0.0004687748112923], +[-0.1479337573526, 0.0006343038043688], +[-0.1428289519883, 0.0007938107189899], +[-0.1377245264648, 0.0009473380460097], +[-0.1326204677226, 0.001094926787625], +[-0.1275167626751, 0.001236616457372], +[-0.1224133982048, 0.001372445080002], +[-0.117310361159, 0.001502449191556], +[-0.1122076383474, 0.001626663839116], +[-0.1071052165391, 0.001745122580757], +[-0.1020030824607, 0.001857857485375], +[-0.09690122279482, 0.001964899132521], +[-0.09179962417915, 0.002066276612213], +[-0.08669827320576, 0.002162017524691], +[-0.08159715642104, 0.002252147980259], +[-0.076496260326, 0.002336692598983], +[-0.07139557137691, 0.002415674510477], +[-0.06629507598636, 0.002489115353648], +[-0.06119476052466, 0.002557035276438], +[-0.05609461132149, 0.002619452935572], +[-0.05099461466793, 0.00267638549631], +[-0.04589475681874, 0.002727848632205], +[-0.04079502399481, 0.002773856524873], +[-0.03569540238599, 0.002814421863766], +[-0.03059587815395, 0.002849555845978], +[-0.02549643743535, 0.002879268176051], +[-0.02039706634512, 0.002903567065815], +[-0.01529775097987, 0.002922459234241], +[-0.01019847742143, 0.002935949907327], +[-0.005099231740416, 0.00294404281799], +[-6.369338240271e-17, 0.002946740206033], +[0.005099231740423, 0.002944042817994], +[0.01019847742143, 0.002935949907327], +[0.01529775097987, 0.002922459234242], +[0.02039706634512, 0.002903567065815], +[0.02549643743535, 0.002879268176051], +[0.03059587815394, 0.002849555845977], +[0.03569540238599, 0.002814421863766], +[0.04079502399481, 0.002773856524873], +[0.04589475681874, 0.002727848632205], +[0.05099461466793, 0.00267638549631], +[0.05609461132148, 0.002619452935571], +[0.06119476052466, 0.002557035276438], +[0.06629507598636, 0.002489115353648], +[0.07139557137691, 0.002415674510477], +[0.076496260326, 0.002336692598982], +[0.08159715642104, 0.002252147980259], +[0.08669827320576, 0.002162017524691], +[0.09179962417915, 0.002066276612204], +[0.09690122279482, 0.001964899132521], +[0.1020030824607, 0.001857857485375], +[0.1071052165391, 0.001745122580756], +[0.1122076383474, 0.001626663839116], +[0.117310361159, 0.001502449191556], +[0.1224133982048, 0.001372445080002], +[0.1275167626751, 0.001236616457358], +[0.1326204677226, 0.001094926787625], +[0.1377245264648, 0.0009473380460097], +[0.1428289519883, 0.0007938107189899], +[0.1479337573526, 0.0006343038043691], +[0.1530389555954, 0.0004687748112923], +[0.1581445597378, 0.0002971797602438], +[0.1632505827908, 0.0001194731830303], +[0.1683570377621, -6.439187733483e-05], +[0.1734639376639, -0.0002544638665649], +[0.1785712955209, -0.0004507927193149], +[0.1836791243799, -0.0006534298591987], +[0.1887874373196, -0.0008624281988925], +[0.1938962474615, -0.001077842140211], +[0.1990055679811, -0.001299727574138], +[0.204115412121, -0.001528141881017], +[0.2092257932037, -0.001763143930221], +[0.2143367246463, -0.002004794080403], +[0.2194482199754, -0.0022531541792], +[0.2245602928434, -0.002508287563032], +[0.2296729570455, -0.002770259056762], +[0.2347862265379, -0.003039134973226], +[0.2399001154568, -0.003314983112548], +[0.2450143770648, -0.003597794511035], +[0.2501297637298, -0.003887755725763], +[0.2552456757531, -0.004185018555658], +[0.2603621808767, -0.004489509206483], +[0.2654793673989, -0.004801294202798], +[0.2705972745363, -0.005120476838763], +[0.275715914749, -0.005447149550467], +[0.2808352987945, -0.005781394216741], +[0.2859554391615, -0.006123288172552], +[0.2910763551592, -0.006472913842298], +[0.2961980644624, -0.006830355267747], +[0.301320585237, -0.007195697945683], +[0.306443936173, -0.007569028821799], +[0.3115681365181, -0.007950436283805], +[0.3166932061129, -0.00834001015368], +[0.3218191654268, -0.008737841679005], +[0.3269460355948, -0.009144023523284], +[0.3320738384551, -0.009558649755197], +[0.337202596588, -0.009981815836687], +[0.3423323333556, -0.01041361860981], +[0.3474630729417, -0.01085415628225], +[0.3525948403929, -0.01130352841141], +[0.3577276616605, -0.01176183588701], +[0.3628615636429, -0.01222918091206], +[0.3679965742279, -0.01270566698216], +[0.3731327223365, -0.01319139886293], +[0.378270037966, -0.01368648256564], +[0.3834085522342, -0.01419102532078], +[0.3885482974231, -0.01470513554953], +[0.393689307023, -0.01522892283306], +[0.3988316157759, -0.01576249787947], +[0.4039752597196, -0.01630597248844], +[0.4091202762305, -0.01685945951325], +[0.4142667040662, -0.0174230728203], +[0.4194145834073, -0.01799692724593], +[0.4245639558986, -0.01858113855042], +[0.4297148646885, -0.01917582336922], +[0.4348668961604, -0.01978075664359], +[-0.4321270824826, -0.01503554364998], +[-0.4269727320227, -0.01443647810104], +[-0.4218195653534, -0.01384770689499], +[-0.4166680788928, -0.01326931698098], +[-0.4115182295901, -0.01270119400912], +[-0.4063699757956, -0.01214322446167], +[-0.4012232772224, -0.01159529570078], +[-0.3960780949083, -0.01105729601344], +[-0.390934391177, -0.01052911465389], +[-0.3857921295974, -0.01001064188346], +[-0.3806512749438, -0.009501769008067], +[-0.3755117931548, -0.00900238841321], +[-0.3703736512919, -0.008512393596827], +[-0.3652368174989, -0.008031679199927], +[-0.36010126096, -0.007560141035152], +[-0.3549669518593, -0.007097676113361], +[-0.3498338613392, -0.006644182668321], +[-0.3447019614605, -0.00619956017961], +[-0.3395712251616, -0.005763709393786], +[-0.3344416262191, -0.005336532344001], +[-0.3293131392085, -0.004917932368025], +[-0.3241857394659, -0.004507814124881], +[-0.3190594030496, -0.004106083610114], +[-0.3139341067033, -0.003712648169792], +[-0.3088098278201, -0.003327416513329], +[-0.3036865444061, -0.002950298725192], +[-0.2985642350466, -0.002581206275586], +[-0.2934428790472, -0.002220052230784], +[-0.2883224561099, -0.001866750228055], +[-0.2832029457171, -0.001521215455285], +[-0.2780843265974, -0.00118336532898], +[-0.2729665783715, -0.0008531224853306], +[-0.2678496889922, -0.0005304156198898], +[-0.2627336639731, -0.0002151657635044], +[-0.2576185084925, 9.275118746286e-05], +[-0.2525041372255, 0.0003935193224514], +[-0.2473902637663, 0.0006872249954794], +[-0.2422766047806, 0.0009734482032922], +[-0.2371653544518, 0.001252223963925], +[-0.232053965246, 0.001524398405731], +[-0.2269432939433, 0.00178963733109], +[-0.2218333243123, 0.002048007706926], +[-0.2167240402792, 0.002299575033705], +[-0.2116154259103, 0.0025444033436], +[-0.2065074653952, 0.002782555198835], +[-0.2014001430303, 0.003014091690167], +[-0.1962934432043, 0.003239072435505], +[-0.191187350384, 0.003457555578633], +[-0.1860818491007, 0.003669597788031], +[-0.1809769239382, 0.003875254255758], +[-0.1758725595213, 0.004074578696423], +[-0.1707687405046, 0.00426762334618], +[-0.1656654515631, 0.004454438961794], +[-0.1605626773829, 0.004635074819717], +[-0.1554604026527, 0.00480957871517], +[-0.1503586120562, 0.004977996961346], +[-0.1452572902652, 0.005140374388469], +[-0.1401564219336, 0.005296754342995], +[-0.1350559916913, 0.005447178686754], +[-0.1299559841396, 0.005591687796121], +[-0.1248563838471, 0.005730320561175], +[-0.1197571753454, 0.005863114384886], +[-0.1146583431267, 0.005990105182262], +[-0.1095598716404, 0.00611132737955], +[-0.1044617452918, 0.006226813913403], +[-0.09936394844009, 0.006336596230072], +[-0.0942664653975, 0.006440704284602], +[-0.0891692804286, 0.006539166540038], +[-0.08407237775013, 0.006632009966643], +[-0.07897574153132, 0.006719260041136], +[-0.07387935589447, 0.006800940745948], +[-0.06878320491598, 0.006877074568496], +[-0.06368727262771, 0.00694768250049], +[-0.05859154301862, 0.007012784037263], +[-0.0534960000368, 0.007072397177135], +[-0.04840062759167, 0.00712653842081], +[-0.04330540955654, 0.007175222770816], +[-0.03821032977129, 0.007218463730985], +[-0.03311537204539, 0.007256273305966], +[-0.02802052016098, 0.007288662000804], +[-0.02292575787623, 0.007315638820547], +[-0.01783106892872, 0.007337211269919], +[-0.01273643703911, 0.007353385353049], +[-0.0076418459147, 0.007364165573219], +[-0.002547279253244, 0.00736955493271], +[0.002547279253245, 0.007369554932713], +[0.007641845914693, 0.007364165573212], +[0.01273643703911, 0.007353385353048], +[0.01783106892873, 0.007337211269923], +[0.02292575787623, 0.007315638820547], +[0.02802052016098, 0.007288662000803], +[0.03311537204539, 0.007256273305966], +[0.03821032977129, 0.007218463730985], +[0.04330540955654, 0.007175222770817], +[0.04840062759168, 0.00712653842081], +[0.0534960000368, 0.007072397177135], +[0.05859154301862, 0.007012784037263], +[0.06368727262771, 0.006947682500491], +[0.06878320491598, 0.006877074568496], +[0.07387935589447, 0.006800940745948], +[0.07897574153132, 0.006719260041136], +[0.08407237775013, 0.006632009966643], +[0.0891692804286, 0.006539166540038], +[0.0942664653975, 0.006440704284602], +[0.09936394844009, 0.006336596230072], +[0.1044617452918, 0.006226813913402], +[0.1095598716404, 0.00611132737955], +[0.1146583431267, 0.005990105182262], +[0.1197571753454, 0.005863114384886], +[0.1248563838471, 0.005730320561179], +[0.1299559841396, 0.005591687796121], +[0.1350559916913, 0.005447178686754], +[0.1401564219336, 0.005296754342995], +[0.1452572902652, 0.00514037438847], +[0.1503586120562, 0.004977996961345], +[0.1554604026527, 0.00480957871517], +[0.1605626773829, 0.004635074819689], +[0.1656654515631, 0.004454438961793], +[0.1707687405046, 0.004267623346181], +[0.1758725595213, 0.004074578696423], +[0.1809769239382, 0.003875254255759], +[0.1860818491007, 0.003669597788031], +[0.191187350384, 0.003457555578634], +[0.1962934432043, 0.003239072435505], +[0.2014001430303, 0.003014091690167], +[0.2065074653952, 0.002782555198835], +[0.2116154259103, 0.002544403343601], +[0.2167240402792, 0.002299575033705], +[0.2218333243123, 0.002048007706926], +[0.2269432939433, 0.00178963733109], +[0.232053965246, 0.001524398405731], +[0.2371653544518, 0.001252223963925], +[0.2422766067228, 0.0009734473169292], +[0.2473902637663, 0.0006872249954793], +[0.2525041372255, 0.0003935193224516], +[0.2576185084925, 9.27511874631e-05], +[0.2627336639731, -0.0002151657635044], +[0.2678496889922, -0.0005304156198897], +[0.2729665783715, -0.0008531224853306], +[0.2780843265974, -0.00118336532898], +[0.2832029457171, -0.001521215455285], +[0.2883224561099, -0.001866750228054], +[0.2934428790472, -0.002220052230784], +[0.2985642350466, -0.002581206275586], +[0.3036865444061, -0.002950298725192], +[0.3088098278201, -0.003327416513329], +[0.3139341067033, -0.003712648169792], +[0.3190594030496, -0.004106083610114], +[0.3241857394659, -0.004507814124881], +[0.3293131392085, -0.004917932368025], +[0.3344416262191, -0.005336532344001], +[0.3395712251616, -0.005763709393786], +[0.3447019614605, -0.006199560179541], +[0.3498338613392, -0.006644182668321], +[0.3549669518593, -0.007097676113361], +[0.36010126096, -0.007560141035152], +[0.3652368174989, -0.008031679199927], +[0.3703736512919, -0.008512393596827], +[0.3755117931548, -0.009002388413209], +[0.3806512749438, -0.009501769008067], +[0.3857921295974, -0.01001064188346], +[0.390934391177, -0.01052911465389], +[0.3960780949083, -0.01105729601344], +[0.4012232772224, -0.01159529570078], +[0.4063699757956, -0.01214322446167], +[0.4115182295901, -0.01270119400912], +[0.4166680788928, -0.01326931698098], +[0.4218195653534, -0.01384770689499], +[0.4269727320227, -0.01443647810104], +[0.4321270824885, -0.01503554366772], +[-0.4293834735336, -0.01028363170316], +[-0.4242269085556, -0.009690460171294], +[-0.4190716858137, -0.009107676110631], +[-0.4139182853422, -0.008535181949839], +[-0.4087666641227, -0.007972865536499], +[-0.4036167804377, -0.007420615508923], +[-0.3984685938359, -0.006878321342509], +[-0.3933220650957, -0.00634587339393], +[-0.3881771561889, -0.00582316294282], +[-0.3830338302431, -0.005310082231074], +[-0.3778920515038, -0.004806524499854], +[-0.372751785296, -0.004312384024377], +[-0.3676129979861, -0.003827556146571], +[-0.3624756569426, -0.003351937305678], +[-0.357339730498, -0.002885425066904], +[-0.3522051879099, -0.002427918148189], +[-0.3470719993227, -0.001979316445193], +[-0.3419401357297, -0.001539521054579], +[-0.3368095689349, -0.001108434295688], +[-0.3316802715163, -0.0006859597306749], +[-0.3265522167888, -0.0002720021832103], +[-0.3214253787681, 0.0001335322441942], +[-0.3162997321349, 0.0005307361541322], +[-0.3111752522006, 0.0009197008394658], +[-0.3060519148728, 0.001300516269611], +[-0.3009296964624, 0.001673271072468], +[-0.2958085742815, 0.002038052229306], +[-0.2906885262904, 0.002394945785116], +[-0.2855695309008, 0.002744037401094], +[-0.2804515648441, 0.003085412835794], +[-0.2753346000375, 0.003419154446315], +[-0.2702186072224, 0.003745329687496], +[-0.2651035827158, 0.004063981869357], +[-0.2599895935262, 0.004375171604778], +[-0.2548767376751, 0.004679124740383], +[-0.2497648146571, 0.00497634555931], +[-0.2446528182625, 0.00526709977079], +[-0.2395424343457, 0.005547994726719], +[-0.2344328237624, 0.00582340145431], +[-0.2293240453801, 0.006091843015247], +[-0.2242160807215, 0.006353387010119], +[-0.2191089114627, 0.006608099595897], +[-0.2140025194156, 0.006856045482557], +[-0.2088968865118, 0.007097287930115], +[-0.2037919947866, 0.007331888745822], +[-0.1986878263639, 0.007559908281556], +[-0.1935843634429, 0.00778140543109], +[-0.1884815882844, 0.007996437628176], +[-0.183379483199, 0.008205060843814], +[-0.1782780305353, 0.008407329584316], +[-0.1731772126696, 0.008603296889174], +[-0.168077011996, 0.00879301432905], +[-0.1629774109171, 0.008976532003832], +[-0.157878391836, 0.009153898540744], +[-0.1527799371483, 0.00932516109251], +[-0.1476820292356, 0.00949036533556], +[-0.142584650459, 0.009649555468281], +[-0.1374877831538, 0.009802774209298], +[-0.132391409624, 0.009950062795796], +[-0.1272955121389, 0.01009146098187], +[-0.1222000729284, 0.01022700703693], +[-0.1171050741805, 0.01035673774406], +[-0.1120104980386, 0.01048068839855], +[-0.1069163265991, 0.0105988928063], +[-0.1018225419103, 0.0107113832824], +[-0.09672912597091, 0.01081819064964], +[-0.09163606072966, 0.01091934423711], +[-0.08654332808502, 0.01101487187885], +[-0.08145090988544, 0.01110479991252], +[-0.07635878793, 0.01118915317813], +[-0.07126694396936, 0.0112679550168], +[-0.06617535970712, 0.0113412272696], +[-0.06108401680148, 0.01140899027643], +[-0.05599289686722, 0.01147126287498], +[-0.05090198147796, 0.01152806239973], +[-0.04581125216867, 0.01157940468102], +[-0.0407206904384, 0.0116253040442], +[-0.0356302777533, 0.01166577330884], +[-0.03053999554975, 0.01170082378804], +[-0.02544982523772, 0.01173046528777], +[-0.02035974820423, 0.01175470610635], +[-0.01526974581704, 0.01177355303395], +[-0.01017979942832, 0.01178701135222], +[-0.005089890378451, 0.01179508483399], +[-1.910801472081e-16, 0.01179777574306], +[0.005089890378451, 0.01179508483399], +[0.01017979942832, 0.01178701135222], +[0.01526974581705, 0.01177355303395], +[0.02035974820424, 0.01175470610635], +[0.02544982523772, 0.01173046528777], +[0.03053999554975, 0.01170082378804], +[0.0356302777533, 0.01166577330884], +[0.0407206904384, 0.0116253040442], +[0.04581125216867, 0.01157940468102], +[0.05090198147796, 0.01152806239973], +[0.05599289686722, 0.01147126287498], +[0.06108401680147, 0.01140899027643], +[0.06617535970712, 0.0113412272696], +[0.07126694396936, 0.0112679550168], +[0.07635878793, 0.01118915317813], +[0.08145090988545, 0.01110479991252], +[0.08654332808502, 0.01101487187885], +[0.09163606072966, 0.01091934423711], +[0.09672912597091, 0.01081819064964], +[0.1018225419103, 0.0107113832824], +[0.1069163265991, 0.0105988928063], +[0.1120104980386, 0.01048068839855], +[0.1171050741805, 0.01035673774406], +[0.1222000729284, 0.01022700703693], +[0.1272955121389, 0.01009146098187], +[0.132391409624, 0.009950062795796], +[0.1374877831538, 0.009802774209298], +[0.142584650459, 0.009649555468281], +[0.1476820292356, 0.00949036533556], +[0.1527799371483, 0.00932516109251], +[0.157878391836, 0.009153898540744], +[0.1629774109171, 0.008976532003832], +[0.168077011996, 0.00879301432905], +[0.1731772126696, 0.008603296889174], +[0.1782780305353, 0.008407329584316], +[0.183379483199, 0.008205060843814], +[0.1884815882844, 0.007996437628175], +[0.1935843634429, 0.00778140543109], +[0.1986878263639, 0.007559908281454], +[0.2037919947866, 0.007331888745822], +[0.2088968865118, 0.007097287930115], +[0.2140025194156, 0.006856045482557], +[0.2191089114627, 0.006608099595898], +[0.2242160807215, 0.006353387010119], +[0.2293240453801, 0.006091843015247], +[0.2344328237624, 0.00582340145439], +[0.2395424343457, 0.005547994726719], +[0.2446528182625, 0.00526709977079], +[0.2497648146571, 0.004976345559311], +[0.2548767376751, 0.004679124740383], +[0.2599895935262, 0.004375171604778], +[0.2651035827158, 0.004063981869357], +[0.2702186072224, 0.003745329687496], +[0.2753346000375, 0.003419154446315], +[0.2804515648441, 0.003085412835794], +[0.2855695309008, 0.002744037401095], +[0.2906885262904, 0.002394945785116], +[0.2958085742815, 0.002038052229306], +[0.3009296964624, 0.001673271072468], +[0.3060519148728, 0.001300516269611], +[0.3111752522006, 0.0009197008394651], +[0.3162997321349, 0.0005307361541322], +[0.3214253787681, 0.0001335322441944], +[0.3265522167888, -0.0002720021832101], +[0.3316802715163, -0.0006859597306747], +[0.3368095689349, -0.001108434295687], +[0.3419401357297, -0.001539521054579], +[0.3470719993227, -0.001979316445193], +[0.3522051879099, -0.002427918148189], +[0.357339730498, -0.002885425066904], +[0.3624756569426, -0.003351937305678], +[0.3676129979861, -0.003827556146571], +[0.372751785296, -0.004312384024377], +[0.3778920515038, -0.004806524499854], +[0.3830338302431, -0.005310082231073], +[0.3881771561889, -0.00582316294282], +[0.3933220650957, -0.00634587339393], +[0.3984685938359, -0.006878321342509], +[0.4036167804377, -0.007420615508923], +[0.4087666641227, -0.007972865536499], +[0.4139182853422, -0.008535181949839], +[0.4190716858139, -0.009107676111204], +[0.4242269085556, -0.009690460171294], +[0.4293839979208, -0.01028364702512], +[-0.4266360539294, -0.005524830290862], +[-0.4214774977088, -0.00493795147448], +[-0.4163204182984, -0.004361226593416], +[-0.4111653013973, -0.00379470099337], +[-0.4060121039551, -0.00323826463435], +[-0.4008607841263, -0.002691808226413], +[-0.3957113012376, -0.002155223275398], +[-0.3905636157541, -0.001628402126288], +[-0.3854176892454, -0.001111238004257], +[-0.38027348435, -0.0006036250534854], +[-0.3751309647403, -0.0001054583738073], +[-0.3699900950864, 0.0003833659447368], +[-0.3648508410205, 0.0008629507893487], +[-0.3597131691002, 0.001333397993868], +[-0.3545770467726, 0.001794808310009], +[-0.3494424423379, 0.002247281380369], +[-0.3443093249141, 0.002690915713137], +[-0.3391776644003, 0.0031258086584], +[-0.3340474314423, 0.003552056385987], +[-0.3289185973971, 0.003969753864759], +[-0.3237911342988, 0.004378994843275], +[-0.3186650148243, 0.004779871831753], +[-0.3135402122604, 0.005172476085253], +[-0.3084167004708, 0.00555689758801], +[-0.3032944538644, 0.005933225038848], +[-0.2981734467971, 0.006301545965723], +[-0.293053655491, 0.006661945159947], +[-0.2879350575495, 0.007014507343601], +[-0.2828176318667, 0.00735931925003], +[-0.2777013514553, 0.007696473289894], +[-0.2725861688462, 0.008026058343422], +[-0.2674720193657, 0.00834811601564], +[-0.2623589134477, 0.008662584597911], +[-0.2572471402555, 0.008969413224376], +[-0.2521372227011, 0.009269135716539], +[-0.2470287205296, 0.009563504881452], +[-0.2419174777657, 0.009848297762452], +[-0.2368095444707, 0.01012686821244], +[-0.2317025593269, 0.01039844528812], +[-0.2265965016411, 0.01066309720359], +[-0.221491350868, 0.0109208907531], +[-0.2163870865934, 0.01117189130643], +[-0.211283688518, 0.01141616280452], +[-0.2061811364414, 0.0116537677554], +[-0.201079410248, 0.01188476723021], +[-0.1959784898934, 0.0121092208595], +[-0.1908783553909, 0.01232718682957], +[-0.1857789868, 0.01253872187908], +[-0.1806803642151, 0.01274388129571], +[-0.1755824677546, 0.01294271891296], +[-0.1704852775515, 0.01313528710706], +[-0.1653887737443, 0.01332163679395], +[-0.160292936469, 0.01350181742639], +[-0.1551977458511, 0.01367587699115], +[-0.1501031819992, 0.01384386200621], +[-0.1450092249985, 0.0140058175181], +[-0.1399158549054, 0.01416178709929], +[-0.1348230517427, 0.01431181284562], +[-0.129730795495, 0.01445593537384], +[-0.1246390661053, 0.01459419381914], +[-0.1195478434718, 0.01472662583281], +[-0.114457107445, 0.0148532675799], +[-0.1093668378261, 0.01497415373703], +[-0.1042770143651, 0.01508931749014], +[-0.09918761675967, 0.01519879053243], +[-0.09409862465486, 0.01530260306225], +[-0.08901001764256, 0.01540078378118], +[-0.08392177526188, 0.01549335989206], +[-0.07883387699974, 0.01558035709719], +[-0.07374630229185, 0.01566179959657], +[-0.06865903052409, 0.01573771008621], +[-0.06357204103413, 0.01580810975655], +[-0.05848531311347, 0.01587301829095], +[-0.05339882600964, 0.01593245386427], +[-0.04831255892882, 0.0159864331416], +[-0.04322649103855, 0.01603497127696], +[-0.03814060147077, 0.01607808191225], +[-0.03305486932503, 0.01611577717621], +[-0.02796927367184, 0.01614806768348], +[-0.02288379355628, 0.01617496253385], +[-0.01779840800162, 0.01619646931155], +[-0.01271309601315, 0.01621259408464], +[-0.007627836582086, 0.01622334140461], +[-0.002542608689524, 0.01622871430592], +[0.002542608689523, 0.01622871430592], +[0.007627836582084, 0.0162233414046], +[0.01271309601315, 0.01621259408464], +[0.01779840800162, 0.01619646931155], +[0.02288379355628, 0.01617496253385], +[0.02796927367184, 0.01614806768348], +[0.03305486932503, 0.01611577717621], +[0.03814060147077, 0.01607808191225], +[0.04322649103855, 0.01603497127696], +[0.04831255892882, 0.0159864331416], +[0.05339882600964, 0.01593245386427], +[0.05848531311347, 0.01587301829095], +[0.06357204103414, 0.01580810975655], +[0.06865903052409, 0.01573771008621], +[0.07374630229185, 0.01566179959657], +[0.07883387699974, 0.01558035709719], +[0.08392177526188, 0.01549335989206], +[0.08901001764257, 0.01540078378118], +[0.09409862465487, 0.01530260306225], +[0.09918761675967, 0.01519879053243], +[0.1042770143651, 0.01508931749014], +[0.1093668378261, 0.01497415373703], +[0.114457107445, 0.0148532675799], +[0.1195478434718, 0.01472662583281], +[0.1246390661053, 0.01459419381914], +[0.129730795495, 0.01445593537384], +[0.1348230517427, 0.01431181284562], +[0.1399158549054, 0.01416178709929], +[0.1450092249985, 0.0140058175181], +[0.1501031819992, 0.01384386200621], +[0.1551977458511, 0.01367587699115], +[0.160292936469, 0.01350181742639], +[0.1653887737443, 0.01332163679395], +[0.1704852775515, 0.01313528710706], +[0.1755824677546, 0.01294271891296], +[0.1806803642151, 0.01274388129571], +[0.1857789868, 0.01253872187908], +[0.1908783553909, 0.01232718682957], +[0.1959784898934, 0.01210922085945], +[0.201079410248, 0.01188476723021], +[0.2061811364414, 0.0116537677554], +[0.211283688518, 0.01141616280452], +[0.2163870865934, 0.01117189130643], +[0.221491350868, 0.0109208907531], +[0.2265965016411, 0.01066309720359], +[0.2317025593269, 0.01039844528812], +[0.2368095444707, 0.01012686821244], +[0.2419174777657, 0.009848297762452], +[0.2470287205296, 0.009563504881452], +[0.2521372227011, 0.009269135716539], +[0.2572471402555, 0.008969413224376], +[0.2623589134477, 0.008662584597911], +[0.2674720193657, 0.00834811601564], +[0.2725861688462, 0.008026058343422], +[0.2777013514553, 0.007696473289895], +[0.2828176318667, 0.00735931925003], +[0.2879350575495, 0.007014507343601], +[0.293053655491, 0.006661945159947], +[0.2981734467971, 0.006301545965723], +[0.3032944538644, 0.005933225038847], +[0.3084167004708, 0.00555689758801], +[0.3135402122604, 0.005172476085253], +[0.3186650148243, 0.004779871831753], +[0.3237911342988, 0.004378994843275], +[0.3289185973971, 0.003969753864759], +[0.3340474314423, 0.003552056385987], +[0.3391776644003, 0.0031258086584], +[0.3443093249141, 0.002690915713137], +[0.3494424423379, 0.002247281380369], +[0.3545770467726, 0.001794808310009], +[0.3597131691002, 0.001333397993869], +[0.3648508410205, 0.000862950789349], +[0.3699900950864, 0.0003833659447365], +[0.3751309647403, -0.000105458373807], +[0.38027348435, -0.0006036250534855], +[0.3854176892454, -0.001111238004257], +[0.3905636157542, -0.001628402126288], +[0.3957113012376, -0.002155223275398], +[0.4008607841263, -0.002691808226413], +[0.4060121039551, -0.00323826463435], +[0.4111653013973, -0.00379470099337], +[0.4163204182984, -0.004361226593416], +[0.4214774977088, -0.00493795147448], +[0.4266360545437, -0.005524832156605], +[-0.4238850248647, -0.0007595781664246], +[-0.4187246020713, -0.000179132339501], +[-0.4135658630689, 0.0003914628145769], +[-0.4084092250157, 0.0009519485876322], +[-0.4032546447665, 0.001502432990494], +[-0.3981020802884, 0.002043023323174], +[-0.3929514906302, 0.00257382612996], +[-0.3878028358911, 0.003094947156739], +[-0.3826560771884, 0.003606491310504], +[-0.3775111766252, 0.004108562620954], +[-0.3723680972569, 0.004601264204152], +[-0.3672268030581, 0.005084698228145], +[-0.3620872588882, 0.005558965880482], +[-0.3569494304584, 0.006024167337561], +[-0.3518132842973, 0.006480401735722], +[-0.3466787877172, 0.006927767144018], +[-0.3415459087807, 0.007366360538584], +[-0.3364146162669, 0.007796277778533], +[-0.3312848796388, 0.008217613583295], +[-0.3261566690104, 0.008630461511342], +[-0.3210299551144, 0.009034913940211], +[-0.3159047092707, 0.009431062047762], +[-0.3107809033548, 0.0098189957946], +[-0.3056585097678, 0.01019880390759], +[-0.3005375014061, 0.01057057386442], +[-0.2954178497541, 0.01093439283077], +[-0.2902995302739, 0.01129034067233], +[-0.2851825233463, 0.01163849918766], +[-0.2800668160891, 0.01197895942593], +[-0.2749523204103, 0.01231182383065], +[-0.2698390783795, 0.0126371302115], +[-0.2647270433601, 0.01295497469293], +[-0.2596161912236, 0.01326543430668], +[-0.2545064981021, 0.01356858473288], +[-0.249397940366, 0.01386450029186], +[-0.244290494603, 0.0141532539363], +[-0.2391841375981, 0.01443491724394], +[-0.2340788463138, 0.0147095604106], +[-0.2289745978721, 0.01497725224329], +[-0.2238713695365, 0.01523806015459], +[-0.2187691386953, 0.01549205015596], +[-0.2136678828456, 0.01573928685241], +[-0.2085675795786, 0.01597983343695], +[-0.2034682065646, 0.01621375168538], +[-0.1983697415404, 0.01644110195128], +[-0.1932721622958, 0.01666194316115], +[-0.1881754466624, 0.01687633280979], +[-0.1830795725022, 0.01708432695583], +[-0.1779845176972, 0.01728598021734], +[-0.1728902601401, 0.01748134576767], +[-0.1677967777254, 0.01767047533135], +[-0.1627040483409, 0.01785341918016], +[-0.1576120498607, 0.01803022612925], +[-0.1525207601382, 0.01820094353341], +[-0.147430157, 0.01836561728346], +[-0.1423402182407, 0.01852429180266], +[-0.1372509216175, 0.01867701004327], +[-0.1321622448464, 0.01882381348322], +[-0.1270741655984, 0.01896474212279], +[-0.1219866614963, 0.01909983448145], +[-0.1168997101123, 0.01922912759477], +[-0.1118132889658, 0.0193526570114], +[-0.1067273755219, 0.01947045679018], +[-0.1016419471902, 0.01958255949728], +[-0.09655698132441, 0.01968899620352], +[-0.09147245522209, 0.0197897964817], +[-0.08638834612475, 0.01988498840409], +[-0.08130463121861, 0.01997459854001], +[-0.07622128763559, 0.02005865195347], +[-0.07113829245465, 0.02013717220101], +[-0.0660556227035, 0.02021018132957], +[-0.0609732553606, 0.02027769987451], +[-0.05589116735745, 0.02033974685776], +[-0.05080933558121, 0.02039633978605], +[-0.04572773687744, 0.02044749464932], +[-0.04064634805321, 0.02049322591922], +[-0.03556514588034, 0.02053354654778], +[-0.03048410709883, 0.02056846796614], +[-0.02540320842053, 0.02059800008353], +[-0.02032242653279, 0.02062215128627], +[-0.01524173810244, 0.02064092843698], +[-0.01016111977975, 0.02065433687399], +[-0.005080548202474, 0.02066238041072], +[0, 0.02066506133537], +[0.005080548202473, 0.02066238041072], +[0.01016111977975, 0.02065433687399], +[0.01524173810244, 0.02064092843699], +[0.02032242653279, 0.02062215128626], +[0.02540320842052, 0.02059800008353], +[0.03048410709884, 0.02056846796615], +[0.03556514588034, 0.02053354654778], +[0.04064634805321, 0.02049322591922], +[0.04572773687744, 0.02044749464932], +[0.05080933558121, 0.02039633978605], +[0.05589116735745, 0.02033974685776], +[0.06097325536059, 0.02027769987451], +[0.0660556227035, 0.02021018132957], +[0.07113829245465, 0.02013717220101], +[0.07622128763559, 0.02005865195347], +[0.08130463121861, 0.01997459854001], +[0.08638834612475, 0.01988498840409], +[0.09147245522209, 0.0197897964817], +[0.09655698132441, 0.01968899620352], +[0.1016419471902, 0.01958255949728], +[0.1067273755219, 0.01947045679018], +[0.1118132889658, 0.0193526570114], +[0.1168997101123, 0.01922912759477], +[0.1219866614963, 0.01909983448146], +[0.1270741655984, 0.01896474212279], +[0.1321622448464, 0.01882381348322], +[0.1372509216175, 0.01867701004327], +[0.1423402182407, 0.01852429180266], +[0.147430157, 0.01836561728346], +[0.1525207601382, 0.01820094353341], +[0.1576120498607, 0.01803022612925], +[0.1627040483409, 0.01785341918016], +[0.1677967777254, 0.01767047533135], +[0.1728902601401, 0.01748134576767], +[0.1779845176972, 0.01728598021734], +[0.1830795725022, 0.01708432695583], +[0.1881754466624, 0.01687633280979], +[0.1932721622958, 0.01666194316115], +[0.1983697415404, 0.01644110195128], +[0.2034682065646, 0.01621375168538], +[0.2085675795786, 0.01597983343695], +[0.2136678828456, 0.01573928685241], +[0.2187691386953, 0.01549205015596], +[0.2238713695365, 0.01523806015459], +[0.2289745978721, 0.01497725224329], +[0.2340788463138, 0.01470956041059], +[0.2391841375981, 0.01443491724394], +[0.244290494603, 0.0141532539363], +[0.249397940366, 0.01386450029186], +[0.2545064981021, 0.01356858473288], +[0.2596161912236, 0.01326543430668], +[0.2647270433601, 0.01295497469293], +[0.2698390783795, 0.0126371302115], +[0.2749523204103, 0.01231182383065], +[0.2800668160891, 0.01197895942593], +[0.2851825233463, 0.01163849918766], +[0.2902995302739, 0.01129034067233], +[0.2954178497541, 0.01093439283077], +[0.3005375014061, 0.01057057386442], +[0.3056585097678, 0.01019880390759], +[0.3107809033548, 0.009818995794601], +[0.3159047092707, 0.009431062047762], +[0.3210299551144, 0.009034913940211], +[0.3261566690104, 0.008630461511342], +[0.3312848796388, 0.008217613583295], +[0.3364146162669, 0.007796277778533], +[0.3415459087807, 0.007366360538584], +[0.3466787877172, 0.006927767144018], +[0.3518132842973, 0.006480401735722], +[0.3569494304584, 0.006024167337561], +[0.3620872588882, 0.005558965880483], +[0.3672268030581, 0.005084698228146], +[0.3723680972569, 0.004601264204152], +[0.3775111766252, 0.004108562620954], +[0.3826560771884, 0.003606491310504], +[0.3878028358911, 0.00309494715674], +[0.3929514906302, 0.00257382612996], +[0.3981020802884, 0.002043023323174], +[0.4032546447665, 0.001502432990494], +[0.4084092250157, 0.0009519485876321], +[0.4135658630689, 0.0003914628145771], +[0.4187246020713, -0.000179132339501], +[0.4238850248692, -0.0007595781780497], +[-0.421130278865, 0.004011389253714], +[-0.4159683234331, 0.004585818406354], +[-0.4108081196602, 0.005150214760886], +[-0.4056501534991, 0.005704590969381], +[-0.4004943816489, 0.006249053093981], +[-0.395340761831, 0.00678370652448], +[-0.3901892527618, 0.007308655933738], +[-0.3850398141225, 0.00782400523561], +[-0.3798924065298, 0.008329857544931], +[-0.3747469915055, 0.00882631513947], +[-0.3696035314451, 0.009313479423831], +[-0.3644619895868, 0.009791450895196], +[-0.3593223299802, 0.01026032911087], +[-0.3541845174544, 0.01072021265753], +[-0.3490485175869, 0.01117119912218], +[-0.3439142966714, 0.01161338506461], +[-0.3387818216869, 0.01204686599145], +[-0.3336510602662, 0.0124717363316], +[-0.3285219806655, 0.0128880894131], +[-0.3233945517332, 0.01329601744125], +[-0.3182687428804, 0.013695611478], +[-0.3131445240508, 0.01408696142252], +[-0.3080218656921, 0.01447015599282], +[-0.3029007387268, 0.01484528270854], +[-0.2977811145249, 0.01521242787456], +[-0.2926629648762, 0.01557167656571], +[-0.2875462619639, 0.01592311261218], +[-0.2824309783385, 0.01626681858587], +[-0.2773170868928, 0.01660287578746], +[-0.2722045608374, 0.01693136423417], +[-0.2670933736772, 0.0172523626482], +[-0.2619834991882, 0.01756594844579], +[-0.2568749113957, 0.01787219772687], +[-0.251767584553, 0.01817118526517], +[-0.246661493121, 0.01846298449894], +[-0.2415566117483, 0.01874766752199], +[-0.2364529152527, 0.01902530507528], +[-0.2313503786032, 0.01929596653882], +[-0.2262489769025, 0.01955971992393], +[-0.2211486853711, 0.01981663186591], +[-0.2160494793314, 0.0200667676169], +[-0.2109513341931, 0.0203101910391], +[-0.2058542254394, 0.02054696459827], +[-0.2007581286134, 0.02077714935737], +[-0.1956630193064, 0.02100080497054], +[-0.1905688731456, 0.02121798967724], +[-0.1854756657836, 0.02142876029648], +[-0.1803833728883, 0.02163317222144], +[-0.1752919701334, 0.02183127941407], +[-0.1702014331895, 0.02202313439994], +[-0.1651117377167, 0.0222087882632], +[-0.1600228593565, 0.02238829064172], +[-0.1549347737259, 0.02256168972227], +[-0.1498474564108, 0.02272903223598], +[-0.1447608829608, 0.02289036345381], +[-0.1396750288848, 0.02304572718213], +[-0.1345898696462, 0.02319516575851], +[-0.1295053806595, 0.02333872004756], +[-0.1244215372875, 0.02347642943691], +[-0.1193383148385, 0.02360833183324], +[-0.1142556885645, 0.02373446365863], +[-0.1091736336592, 0.02385485984674], +[-0.1040921252576, 0.02396955383931], +[-0.09901113843513, 0.02407857758276], +[-0.09393064820729, 0.02418196152483], +[-0.08885062953026, 0.02427973461145], +[-0.08377105730138, 0.02437192428365], +[-0.07869190636024, 0.02445855647466], +[-0.07361315149004, 0.02453965560714], +[-0.06853476741938, 0.02461524459052], +[-0.06345672882425, 0.02468534481852], +[-0.05837901033041, 0.02474997616682], +[-0.053301586516, 0.02480915699082], +[-0.04822443191438, 0.02486290412364], +[-0.0431475210173, 0.0249112328742], +[-0.03807082827815, 0.02495415702553], +[-0.03299432811552, 0.02499168883318], +[-0.0279179949169, 0.02502383902384], +[-0.02284180304246, 0.0250506167941], +[-0.01776572682909, 0.02507202980942], +[-0.01268974059443, 0.02508808420323], +[-0.007613818641096, 0.02509878457622], +[-0.002537935260889, 0.02510413399582], +[0.002537935260888, 0.02510413399582], +[0.007613818641098, 0.02509878457623], +[0.01268974059443, 0.02508808420323], +[0.01776572682909, 0.02507202980942], +[0.02284180304247, 0.0250506167941], +[0.0279179949169, 0.02502383902384], +[0.03299432811552, 0.02499168883318], +[0.03807082827814, 0.02495415702553], +[0.0431475210173, 0.0249112328742], +[0.04822443191438, 0.02486290412364], +[0.053301586516, 0.02480915699082], +[0.05837901033041, 0.02474997616682], +[0.06345672882425, 0.02468534481852], +[0.06853476741938, 0.02461524459052], +[0.07361315149004, 0.02453965560714], +[0.07869190636024, 0.02445855647466], +[0.08377105730139, 0.02437192428365], +[0.08885062953026, 0.02427973461145], +[0.09393064820729, 0.02418196152483], +[0.09901113843513, 0.02407857758276], +[0.1040921252576, 0.02396955383931], +[0.1091736336592, 0.02385485984673], +[0.1142556885645, 0.02373446365863], +[0.1193383148385, 0.02360833183324], +[0.1244215372875, 0.02347642943689], +[0.1295053806595, 0.02333872004756], +[0.1345898696462, 0.02319516575852], +[0.1396750288848, 0.02304572718213], +[0.1447608829608, 0.02289036345381], +[0.1498474564108, 0.02272903223598], +[0.1549347737259, 0.02256168972227], +[0.1600228593565, 0.02238829064172], +[0.1651117377167, 0.0222087882632], +[0.1702014331895, 0.02202313439994], +[0.1752919701334, 0.02183127941407], +[0.1803833728883, 0.02163317222144], +[0.1854756657836, 0.02142876029648], +[0.1905688731456, 0.02121798967724], +[0.1956630193064, 0.02100080497055], +[0.2007581286134, 0.02077714935737], +[0.2058542254394, 0.02054696459827], +[0.2109513341931, 0.0203101910391], +[0.2160494793314, 0.0200667676169], +[0.2211486853711, 0.01981663186591], +[0.2262489769025, 0.01955971992393], +[0.2313503786032, 0.01929596653882], +[0.2364529152527, 0.01902530507528], +[0.2415566117483, 0.01874766752199], +[0.246661493121, 0.01846298449894], +[0.251767584553, 0.01817118526517], +[0.2568749113957, 0.01787219772687], +[0.2619834991882, 0.01756594844579], +[0.2670933736772, 0.0172523626482], +[0.2722045608374, 0.01693136423417], +[0.2773170868928, 0.01660287578746], +[0.2824309783385, 0.01626681858587], +[0.2875462619639, 0.01592311261218], +[0.2926629648762, 0.01557167656571], +[0.2977811145249, 0.01521242787456], +[0.3029007387268, 0.01484528270854], +[0.3080218656921, 0.01447015599282], +[0.3131445240508, 0.01408696142252], +[0.3182687428804, 0.013695611478], +[0.3233945517332, 0.01329601744125], +[0.3285219806655, 0.0128880894131], +[0.3336510602662, 0.0124717363316], +[0.3387818216869, 0.01204686599145], +[0.3439142966714, 0.01161338506461], +[0.3490485175869, 0.01117119912218], +[0.3541845174544, 0.01072021265753], +[0.3593223299802, 0.01026032911087], +[0.3644619895868, 0.009791450895196], +[0.3696035314451, 0.009313479423831], +[0.3747469915055, 0.00882631513947], +[0.3798924065298, 0.008329857544931], +[0.3850398141225, 0.00782400523561], +[0.3901892527618, 0.007308655933738], +[0.395340761831, 0.00678370652448], +[0.4004943816489, 0.006249053093982], +[0.4056501534991, 0.005704590969381], +[0.4108081196602, 0.005150214760886], +[0.4159683234333, 0.004585818405947], +[0.4211302788704, 0.00401138923993], +[-0.4183726557256, 0.008788557116462], +[-0.4132087628196, 0.009356723373392], +[-0.4080472869111, 0.009914853321563], +[-0.4028881835208, 0.01046305174436], +[-0.3977314091316, 0.01100142283486], +[-0.3925769211629, 0.01153007015032], +[-0.3874246779447, 0.01204909656861], +[-0.3822746386899, 0.01255860424668], +[-0.3771267634667, 0.01305869458098], +[-0.3719810131704, 0.01354946816965], +[-0.3668373494942, 0.01403102477665], +[-0.3616957349007, 0.0145034632976], +[-0.356556132592, 0.01496688172722], +[-0.3514185064807, 0.01542137712858], +[-0.3462828211604, 0.01586704560374], +[-0.3411490418759, 0.01630398226599], +[-0.3360171344945, 0.01673228121348], +[-0.3308870654768, 0.01715203550429], +[-0.3257588018476, 0.01756333713266], +[-0.3206323111677, 0.01796627700664], +[-0.3155075615059, 0.01836094492677], +[-0.3103845214111, 0.01874742956595], +[-0.3052631598855, 0.0191258184504], +[-0.3001434463575, 0.0194961979415], +[-0.2950253506564, 0.0198586532187], +[-0.2899088429861, 0.02021326826323], +[-0.2847938939011, 0.02056012584272], +[-0.2796804742818, 0.02089930749649], +[-0.2745685553112, 0.0212308935217], +[-0.2694581084526, 0.02155496296012], +[-0.2643491054268, 0.02187159358551], +[-0.2592415181915, 0.0221808618917], +[-0.2541353189204, 0.02248284308111], +[-0.2490304799837, 0.02277761105388], +[-0.243926973929, 0.02306523839748], +[-0.2388247734629, 0.02334579637667], +[-0.2337238514341, 0.02361935492402], +[-0.228624180816, 0.02388598263073], +[-0.2235257346915, 0.02414574673781], +[-0.2184284862375, 0.02439871312766], +[-0.2133324087108, 0.02464494631588], +[-0.2082374754342, 0.02488450944344], +[-0.2031436597841, 0.02511746426908], +[-0.1980509351779, 0.02534387116194], +[-0.1929592750633, 0.02556378909452], +[-0.1878686529071, 0.02577727563576], +[-0.1827790421858, 0.02598438694436], +[-0.177690416376, 0.0261851777623], +[-0.172602748946, 0.02637970140857], +[-0.1675160133482, 0.02656800977304], +[-0.1624301830118, 0.0267501533105], +[-0.1573452313362, 0.02692618103485], +[-0.1522611316852, 0.02709614051355], +[-0.1471778573816, 0.02726007786203], +[-0.1420953817028, 0.02741803773843], +[-0.1370136778763, 0.02757006333842], +[-0.1319327190767, 0.0277161963901], +[-0.1268524784221, 0.02785647714917], +[-0.1217729289723, 0.02799094439412], +[-0.1166940437261, 0.02811963542169], +[-0.1116157956205, 0.02824258604232], +[-0.1065381575295, 0.02835983057591], +[-0.1014611022633, 0.02847140184763], +[-0.09638460256864, 0.02857733118387], +[-0.09130863112873, 0.02867764840845], +[-0.08623316056422, 0.02877238183885], +[-0.08115816343419, 0.02886155828273], +[-0.07608361223758, 0.02894520303448], +[-0.07100947941501, 0.02902333987211], +[-0.06593573735086, 0.0290959910541], +[-0.06086235837569, 0.02916317731663], +[-0.05578931476889, 0.02922491787086], +[-0.05071657876166, 0.02928123040042], +[-0.04564412254012, 0.02933213105911], +[-0.04057191824877, 0.02937763446877], +[-0.03549993799408, 0.02941775371736], +[-0.0304281538482, 0.0294525003572], +[-0.02535653785298, 0.02948188440343], +[-0.02028506202398, 0.02950591433269], +[-0.01521369835472, 0.02952459708198], +[-0.01014241882091, 0.0295379380477], +[-0.005071195384887, 0.02954594108494], +[0, 0.02954860850698], +[0.005071195384887, 0.02954594108494], +[0.01014241882091, 0.0295379380477], +[0.01521369835472, 0.02952459708198], +[0.02028506202398, 0.02950591433269], +[0.02535653785297, 0.02948188440343], +[0.0304281538482, 0.0294525003572], +[0.03549993799408, 0.02941775371736], +[0.04057191824878, 0.02937763446877], +[0.04564412254012, 0.02933213105911], +[0.05071657876166, 0.02928123040042], +[0.0557893147689, 0.02922491787086], +[0.06086235837569, 0.02916317731663], +[0.06593573735086, 0.0290959910541], +[0.07100947941501, 0.02902333987211], +[0.07608361223758, 0.02894520303448], +[0.08115816343419, 0.02886155828273], +[0.08623316056422, 0.02877238183885], +[0.09130863112873, 0.02867764840845], +[0.09638460256864, 0.02857733118387], +[0.1014611022633, 0.02847140184763], +[0.1065381575295, 0.02835983057591], +[0.1116157956205, 0.02824258604232], +[0.1166940437261, 0.02811963542169], +[0.1217729289723, 0.02799094439413], +[0.1268524784221, 0.02785647714917], +[0.1319327190767, 0.0277161963901], +[0.1370136778763, 0.02757006333842], +[0.1420953817028, 0.02741803773843], +[0.1471778573816, 0.02726007786203], +[0.1522611316852, 0.02709614051355], +[0.1573452313362, 0.02692618103483], +[0.1624301830118, 0.0267501533105], +[0.1675160133482, 0.02656800977304], +[0.172602748946, 0.02637970140857], +[0.177690416376, 0.0261851777623], +[0.1827790421858, 0.02598438694436], +[0.1878686529071, 0.02577727563576], +[0.1929592750633, 0.02556378909452], +[0.1980509351779, 0.02534387116194], +[0.2031436597841, 0.02511746426907], +[0.2082374754342, 0.02488450944344], +[0.2133324087108, 0.02464494631588], +[0.2184284862375, 0.02439871312766], +[0.2235257346915, 0.02414574673781], +[0.228624180816, 0.02388598263073], +[0.2337238514341, 0.02361935492402], +[0.2388247734629, 0.02334579637667], +[0.243926973929, 0.02306523839748], +[0.2490304799837, 0.02277761105388], +[0.2541353189204, 0.02248284308111], +[0.2592415181915, 0.0221808618917], +[0.2643491054268, 0.02187159358551], +[0.2694581084526, 0.02155496296012], +[0.2745685553112, 0.0212308935217], +[0.2796804742818, 0.02089930749649], +[0.2847938939011, 0.02056012584272], +[0.2899088429861, 0.02021326826323], +[0.2950253506564, 0.0198586532187], +[0.3001434463575, 0.0194961979415], +[0.3052631598855, 0.0191258184504], +[0.3103845214111, 0.01874742956595], +[0.3155075615059, 0.01836094492677], +[0.3206323111677, 0.01796627700664], +[0.3257588018476, 0.01756333713266], +[0.3308870654768, 0.01715203550429], +[0.3360171344945, 0.01673228121348], +[0.3411490418759, 0.01630398226599], +[0.3462828211604, 0.01586704560374], +[0.3514185064807, 0.01542137712858], +[0.356556132592, 0.01496688172722], +[0.3616957349007, 0.0145034632976], +[0.3668373494942, 0.01403102477665], +[0.3719810131704, 0.01354946816965], +[0.3771267634667, 0.01305869458098], +[0.3822746386899, 0.01255860424668], +[0.3874246779447, 0.01204909656861], +[0.3925769211629, 0.01153007015032], +[0.3977314091316, 0.01100142283486], +[0.4028881835208, 0.01046305174436], +[0.4080472869111, 0.009914853321563], +[0.4132087628196, 0.009356723373392], +[0.4183726557256, 0.008788557116462], +[-0.4156111284046, 0.01357166274305], +[-0.4104460205213, 0.01413340655395], +[-0.4052834629931, 0.01468520394198], +[-0.4001234111516, 0.01522715786278], +[-0.3949658212052, 0.01575937071686], +[-0.3898106502159, 0.01628194430463], +[-0.3846578560749, 0.01679497978354], +[-0.379507397477, 0.01729857762691], +[-0.3743592338951, 0.01779283758473], +[-0.3692133255538, 0.01827785864607], +[-0.3640696334027, 0.01875373900336], +[-0.3589281190891, 0.0192205760182], +[-0.3537887449313, 0.01967846618885], +[-0.3486514738907, 0.02012750511922], +[-0.343516269545, 0.02056778748935], +[-0.3383830960603, 0.0209994070273], +[-0.3332519181642, 0.02142245648242], +[-0.3281227011187, 0.02183702759987], +[-0.3229954106935, 0.02224321109648], +[-0.3178700131394, 0.02264109663766], +[-0.3127464751622, 0.02303077281553], +[-0.3076247638971, 0.02341232712805], +[-0.3025048468833, 0.02378584595922], +[-0.2973866920394, 0.02415141456019], +[-0.2922702676391, 0.02450911703126], +[-0.2871555422876, 0.02485903630479], +[-0.2820424848986, 0.02520125412883], +[-0.2769310646716, 0.0255358510516], +[-0.2718212510705, 0.02586290640658], +[-0.2667130138021, 0.02618249829833], +[-0.2616063227962, 0.02649470358889], +[-0.2565011481853, 0.02679959788482], +[-0.2513974602859, 0.02709725552472], +[-0.2462952295802, 0.02738774956729], +[-0.2411944266984, 0.02767115177988], +[-0.2360950224019, 0.02794753262747], +[-0.2309969875672, 0.02821696126208], +[-0.2259002931707, 0.0284795055125], +[-0.2208049102738, 0.02873523187451], +[-0.2157108100091, 0.02898420550133], +[-0.2106179635673, 0.02922649019443], +[-0.2055263421846, 0.02946214839465], +[-0.2004359171312, 0.02969124117355], +[-0.1953466597, 0.02991382822511], +[-0.1902585411965, 0.03012996785756], +[-0.185171532929, 0.03033971698556], +[-0.1800856061998, 0.03054313112255], +[-0.1750007322969, 0.03074026437328], +[-0.1699168824861, 0.0309311694266], +[-0.1648340280047, 0.03111589754844], +[-0.1597521400541, 0.03129449857493], +[-0.1546711897951, 0.03146702090576], +[-0.1495911483422, 0.03163351149768], +[-0.1445119867592, 0.03179401585823], +[-0.1394336760551, 0.03194857803952], +[-0.1343561871808, 0.03209724063237], +[-0.1292794910263, 0.03224004476043], +[-0.1242035584181, 0.03237703007461], +[-0.1191283601173, 0.0325082347476], +[-0.1140538668187, 0.03263369546861], +[-0.1089800491493, 0.03275344743825], +[-0.1039068776682, 0.03286752436359], +[-0.09883432286628, 0.03297595845346], +[-0.09376235516698, 0.03307878041381], +[-0.0886909449267, 0.03317601944337], +[-0.08362006243617, 0.03326770322944], +[-0.07854967792186, 0.0333538579439], +[-0.07347976154788, 0.03343450823939], +[-0.06841028341814, 0.03350967724566], +[-0.0633412135788, 0.03357938656625], +[-0.05827252202106, 0.03364365627522], +[-0.05320417868413, 0.03370250491416], +[-0.04813615345853, 0.03375594948946], +[-0.04306841618954, 0.03380400546971], +[-0.03800093668093, 0.03384668678339], +[-0.0329336846988, 0.03388400581673], +[-0.02786662997561, 0.03391597341185], +[-0.0227997422144, 0.03394259886507], +[-0.01773299109309, 0.03396388992554], +[-0.01266634626888, 0.03397985279398], +[-0.007599777382815, 0.0339904921218], +[-0.002533254064286, 0.03399581101032], +[0.002533254064286, 0.03399581101033], +[0.007599777382816, 0.03399049212181], +[0.01266634626889, 0.03397985279399], +[0.01773299109309, 0.03396388992554], +[0.0227997422144, 0.03394259886507], +[0.02786662997561, 0.03391597341185], +[0.0329336846988, 0.03388400581673], +[0.03800093668094, 0.03384668678339], +[0.04306841618954, 0.03380400546971], +[0.04813615345853, 0.03375594948946], +[0.05320417868413, 0.03370250491416], +[0.05827252202106, 0.03364365627522], +[0.0633412135788, 0.03357938656625], +[0.06841028341814, 0.03350967724566], +[0.07347976154788, 0.03343450823939], +[0.07854967792186, 0.0333538579439], +[0.08362006243617, 0.03326770322944], +[0.0886909449267, 0.03317601944337], +[0.09376235516698, 0.03307878041381], +[0.09883432286628, 0.03297595845346], +[0.1039068776682, 0.03286752436359], +[0.1089800491493, 0.03275344743825], +[0.1140538668187, 0.03263369546861], +[0.1191283601173, 0.03250823474761], +[0.1242035584181, 0.03237703007461], +[0.1292794910263, 0.03224004476043], +[0.1343561871808, 0.03209724063237], +[0.1394336760551, 0.03194857803952], +[0.1445119867592, 0.03179401585823], +[0.1495911483422, 0.03163351149768], +[0.1546711897951, 0.03146702090576], +[0.1597521400541, 0.03129449857493], +[0.1648340280047, 0.03111589754844], +[0.1699168824861, 0.0309311694266], +[0.1750007322969, 0.03074026437328], +[0.1800856061998, 0.03054313112255], +[0.185171532929, 0.03033971698556], +[0.1902585411965, 0.03012996785756], +[0.1953466597, 0.02991382822511], +[0.2004359171312, 0.02969124117355], +[0.2055263421846, 0.02946214839465], +[0.2106179635673, 0.02922649019443], +[0.2157108100091, 0.02898420550133], +[0.2208049102738, 0.02873523187451], +[0.2259002931707, 0.0284795055125], +[0.2309969875672, 0.02821696126208], +[0.2360950224019, 0.02794753262747], +[0.2411944266984, 0.02767115177988], +[0.2462952295802, 0.02738774956729], +[0.2513974602859, 0.02709725552472], +[0.2565011481853, 0.02679959788482], +[0.2616063227962, 0.02649470358889], +[0.2667130138021, 0.02618249829836], +[0.2718212510705, 0.02586290640658], +[0.2769310646716, 0.0255358510516], +[0.2820424848986, 0.02520125412883], +[0.2871555422876, 0.02485903630479], +[0.2922702676391, 0.02450911703126], +[0.2973866920394, 0.02415141456019], +[0.3025048468833, 0.02378584595923], +[0.3076247638971, 0.02341232712805], +[0.3127464751622, 0.02303077281553], +[0.3178700131394, 0.02264109663766], +[0.3229954106935, 0.02224321109648], +[0.3281227011187, 0.02183702759987], +[0.3332519181642, 0.02142245648242], +[0.3383830960603, 0.0209994070273], +[0.343516269545, 0.02056778748935], +[0.3486514738907, 0.02012750511922], +[0.3537887449313, 0.01967846618885], +[0.3589281190891, 0.0192205760182], +[0.3640696334027, 0.01875373900336], +[0.3692133255538, 0.01827785864607], +[0.3743592338951, 0.01779283758473], +[0.379507397477, 0.01729857762691], +[0.3846578560749, 0.01679497978354], +[0.3898106502159, 0.01628194430463], +[0.3949658212052, 0.01575937071686], +[0.4001234111516, 0.01522715786278], +[0.4052834629931, 0.01468520394198], +[0.4104460205212, 0.01413340655396], +[0.4156111284046, 0.01357166274305], +[-0.4128463288668, 0.01836043601527], +[-0.4076801961263, 0.0189156932608], +[-0.4025167454385, 0.0194610933798], +[-0.3973559318855, 0.01999673757619], +[-0.3921977113444, 0.02052272653288], +[-0.3870420404657, 0.02103916036741], +[-0.3818888766502, 0.02154613858951], +[-0.3767381780261, 0.02204376006043], +[-0.371589903425, 0.02253212295389], +[-0.3664440123575, 0.02301132471876], +[-0.3613004649882, 0.02348146204339], +[-0.3561592221112, 0.02394263082139], +[-0.3510202451244, 0.02439492611906], +[-0.3458834960045, 0.02483844214416], +[-0.3407489372811, 0.02527327221615], +[-0.335616532012, 0.02569950873775], +[-0.3304862437572, 0.02611724316775], +[-0.3253580365547, 0.02652656599515], +[-0.3202318748947, 0.02692756671438], +[-0.3151077236957, 0.02732033380169], +[-0.3099855482802, 0.02770495469258], +[-0.3048653143504, 0.02808151576027], +[-0.2997469879652, 0.02845010229514], +[-0.2946305355172, 0.02881079848505], +[-0.28951592371, 0.0291636873965], +[-0.2844031195364, 0.02950885095673], +[-0.2792920902572, 0.02984636993642], +[-0.2741828033802, 0.03017632393324], +[-0.2690752266398, 0.03049879135603], +[-0.2639693279783, 0.03081384940966], +[-0.2588650755258, 0.03112157408042], +[-0.253762437583, 0.03142204012207], +[-0.2486613826032, 0.03171532104237], +[-0.2435618791751, 0.03200148909013], +[-0.2384638960072, 0.03228061524268], +[-0.2333674019119, 0.03255276919389], +[-0.2282723657907, 0.03281801934247], +[-0.2231787566202, 0.03307643278077], +[-0.2180865434387, 0.03332807528388], +[-0.2129956953331, 0.0335730112991], +[-0.2079061814274, 0.03381130393572], +[-0.2028179708711, 0.03404301495512], +[-0.1977310328281, 0.03426820476117], +[-0.1926453364676, 0.03448693239082], +[-0.187560850954, 0.03469925550512], +[-0.1824775454384, 0.03490523038031], +[-0.1773953890508, 0.03510491189925], +[-0.1723143508926, 0.03529835354306], +[-0.1672344000297, 0.03548560738297], +[-0.1621555054863, 0.03566672407241], +[-0.1570776362398, 0.03584175283923], +[-0.1520007612151, 0.03601074147836], +[-0.1469248492808, 0.03617373634421], +[-0.1418498692453, 0.03633078234384], +[-0.136775789853, 0.03648192292989], +[-0.1317025797823, 0.03662720009391], +[-0.1266302076426, 0.03676665435982], +[-0.121558641973, 0.03690032477761], +[-0.1164878512409, 0.03702824891721], +[-0.1114178038411, 0.03715046286255], +[-0.1063484680956, 0.03726700120583], +[-0.1012798122534, 0.03737789704204], +[-0.09621180449128, 0.03748318196363], +[-0.09114441291426, 0.03758288605541], +[-0.08607760555724, 0.03767703788965], +[-0.08101135038636, 0.03776566452147], +[-0.07594561530099, 0.03784879148433], +[-0.07088036813595, 0.03792644278588], +[-0.06581557666413, 0.03799864090391], +[-0.06075120859928, 0.03806540678265], +[-0.05568723159912, 0.03812675982926], +[-0.05062361326873, 0.03818271791052], +[-0.04556032116409, 0.03823329734984], +[-0.0404973227959, 0.03827851292448], +[-0.03543458563356, 0.03831837786302], +[-0.0303720771093, 0.0383529038431], +[-0.02530976462254, 0.03838210098943], +[-0.02024761554426, 0.03840597787205], +[-0.01518559722165, 0.0384245415048], +[-0.01012367698266, 0.03843779734418], +[-0.005061822140834, 0.03844574928836], +[-6.369338240271e-17, 0.03844839967649], +[0.005061822140834, 0.03844574928836], +[0.01012367698267, 0.03843779734419], +[0.01518559722165, 0.03842454150481], +[0.02024761554426, 0.03840597787205], +[0.02530976462254, 0.03838210098943], +[0.03037207710931, 0.0383529038431], +[0.03543458563356, 0.03831837786301], +[0.0404973227959, 0.03827851292448], +[0.04556032116409, 0.03823329734984], +[0.05062361326873, 0.03818271791052], +[0.05568723159912, 0.03812675982926], +[0.06075120859928, 0.03806540678265], +[0.06581557666413, 0.03799864090391], +[0.07088036813595, 0.03792644278588], +[0.07594561530099, 0.03784879148433], +[0.08101135038637, 0.03776566452147], +[0.08607760555724, 0.03767703788965], +[0.09114441291426, 0.03758288605541], +[0.09621180449127, 0.03748318196363], +[0.1012798122534, 0.03737789704204], +[0.1063484680956, 0.03726700120583], +[0.1114178038411, 0.03715046286255], +[0.1164878512409, 0.03702824891721], +[0.121558641973, 0.03690032477761], +[0.1266302076426, 0.03676665435982], +[0.1317025797823, 0.03662720009391], +[0.136775789853, 0.03648192292989], +[0.1418498692453, 0.03633078234384], +[0.1469248492808, 0.03617373634421], +[0.1520007612151, 0.03601074147836], +[0.1570776362398, 0.03584175283923], +[0.1621555054863, 0.03566672407241], +[0.1672344000297, 0.03548560738297], +[0.1723143508926, 0.03529835354306], +[0.1773953890508, 0.03510491189925], +[0.1824775454384, 0.03490523038031], +[0.187560850954, 0.03469925550512], +[0.1926453364676, 0.03448693239083], +[0.1977310328281, 0.03426820476117], +[0.2028179708711, 0.03404301495513], +[0.2079061814274, 0.03381130393572], +[0.2129956953331, 0.0335730112991], +[0.2180865434387, 0.03332807528388], +[0.2231787566202, 0.03307643278077], +[0.2282723657907, 0.03281801934247], +[0.2333674019119, 0.03255276919389], +[0.2384638960072, 0.03228061524268], +[0.2435618791751, 0.03200148909013], +[0.2486613826032, 0.03171532104237], +[0.253762437583, 0.03142204012207], +[0.2588650755258, 0.03112157408042], +[0.2639693279783, 0.03081384940966], +[0.2690752266398, 0.03049879135603], +[0.2741828033802, 0.03017632393324], +[0.2792920902572, 0.02984636993642], +[0.2844031195364, 0.02950885095673], +[0.28951592371, 0.0291636873965], +[0.2946305355172, 0.02881079848505], +[0.2997469879652, 0.02845010229515], +[0.3048653143504, 0.02808151576027], +[0.3099855482802, 0.02770495469258], +[0.3151077236957, 0.02732033380169], +[0.3202318748947, 0.02692756671438], +[0.3253580365547, 0.02652656599515], +[0.3304862437572, 0.02611724316775], +[0.335616532012, 0.02569950873775], +[0.3407489372811, 0.02527327221615], +[0.3458834960045, 0.02483844214416], +[0.3510202451244, 0.02439492611906], +[0.3561592221112, 0.02394263082139], +[0.3613004649882, 0.02348146204339], +[0.3664440123575, 0.02301132471876], +[0.371589903425, 0.02253212295389], +[0.3767381780261, 0.02204376006043], +[0.3818888766502, 0.02154613858951], +[0.3870420404657, 0.02103916036741], +[0.3921977113444, 0.02052272653288], +[0.3973559318855, 0.01999673757619], +[0.4025167454385, 0.0194610933798], +[0.4076801961263, 0.0189156932608], +[0.4128463288668, 0.01836043601527], +[-0.4100783580362, 0.02315470212765], +[-0.4049113885494, 0.0237034100737], +[-0.3997472311675, 0.02424234964997], +[-0.3945858406647, 0.02477162038295], +[-0.389427172531, 0.02529132131119], +[-0.3842711829522, 0.02580155094154], +[-0.3791178287887, 0.02630240720712], +[-0.3739670675544, 0.02679398742691], +[-0.3688188573943, 0.02727638826698], +[-0.3636731570625, 0.02774970570326], +[-0.3585299258986, 0.02821403498592], +[-0.3533891238053, 0.02866947060509], +[-0.3482507112247, 0.02911610625815], +[-0.3431146491149, 0.02955403481829], +[-0.3379808989264, 0.02998334830446], +[-0.332849422579, 0.03040413785255], +[-0.3277201824379, 0.03081649368785], +[-0.322593141291, 0.0312205050986], +[-0.3174682623255, 0.03161626041072], +[-0.3123455091055, 0.03200384696358], +[-0.3072248455491, 0.03238335108679], +[-0.3021062359069, 0.03275485807798], +[-0.2969896447397, 0.03311845218145], +[-0.291875036898, 0.03347421656775], +[-0.2867623775003, 0.03382223331404], +[-0.2816516319137, 0.03416258338528], +[-0.2765427657336, 0.03449534661607], +[-0.2714357447646, 0.03482060169336], +[-0.266330535002, 0.03513842613963], +[-0.2612271026137, 0.03544889629668], +[-0.2561254139227, 0.03575208731046], +[-0.2510254353903, 0.03604807311568], +[-0.2459271335999, 0.03633692642163], +[-0.2408304752416, 0.03661871869809], +[-0.2357354270972, 0.03689352016193], +[-0.2306419560259, 0.03716139976398], +[-0.2255500289508, 0.03742242517643], +[-0.220459612846, 0.03767666278056], +[-0.2153706747242, 0.03792417765486], +[-0.2102831816254, 0.03816503356348], +[-0.2051971006055, 0.03839929294504], +[-0.2001123987264, 0.03862701690172], +[-0.1950290430462, 0.03884826518866], +[-0.18994700061, 0.03906309620369], +[-0.1848662384421, 0.03927156697726], +[-0.1797867235373, 0.03947373316266], +[-0.1747084228549, 0.03966964902655], +[-0.1696313033111, 0.03985936743966], +[-0.1645553317737, 0.04004293986776], +[-0.1594804750568, 0.04022041636289], +[-0.1544066999156, 0.04039184555476], +[-0.1493339730423, 0.04055727464245], +[-0.1442622610626, 0.04071674938629], +[-0.1391915305326, 0.04087031409994], +[-0.1341217479358, 0.04101801164276], +[-0.1290528796814, 0.04115988341237], +[-0.1239848921023, 0.04129596933739], +[-0.1189177514541, 0.04142630787045], +[-0.1138514239144, 0.04155093598149], +[-0.1087858755828, 0.04166988915108], +[-0.1037210724803, 0.04178320136424], +[-0.09865698055074, 0.04189090510429], +[-0.09359356566113, 0.04199303134702], +[-0.0885307936033, 0.04208960955511], +[-0.08346863009549, 0.04218066767275], +[-0.07840704078439, 0.04226623212056], +[-0.07334599124749, 0.04234632779072], +[-0.06828544699572, 0.04242097804239], +[-0.06322537347643, 0.04249020469737], +[-0.05816573607656, 0.04255402803605], +[-0.05310650012614, 0.0426124667936], +[-0.04804763090194, 0.04266553815646], +[-0.04298909363143, 0.04271325775908], +[-0.03793085349683, 0.042755639681], +[-0.03287287563945, 0.04279269644416], +[-0.02781512516409, 0.04282443901047], +[-0.02275756714363, 0.04285087677981], +[-0.01770016662375, 0.04287201758814], +[-0.0126428886277, 0.04288786770603], +[-0.007585698161258, 0.0428984318375], +[-0.002528560217607, 0.04290371311903], +[0.002528560217606, 0.04290371311903], +[0.007585698161258, 0.0428984318375], +[0.0126428886277, 0.04288786770603], +[0.01770016662374, 0.04287201758813], +[0.02275756714363, 0.04285087677981], +[0.02781512516409, 0.04282443901047], +[0.03287287563945, 0.04279269644416], +[0.03793085349683, 0.042755639681], +[0.04298909363143, 0.04271325775908], +[0.04804763090194, 0.04266553815645], +[0.05310650012614, 0.0426124667936], +[0.05816573607656, 0.04255402803605], +[0.06322537347643, 0.04249020469737], +[0.06828544699572, 0.04242097804239], +[0.07334599124749, 0.04234632779072], +[0.07840704078439, 0.04226623212056], +[0.08346863009549, 0.04218066767275], +[0.0885307936033, 0.04208960955511], +[0.09359356566113, 0.04199303134702], +[0.09865698055074, 0.04189090510429], +[0.1037210724803, 0.04178320136424], +[0.1087858755828, 0.04166988915108], +[0.1138514239144, 0.04155093598149], +[0.1189177514541, 0.04142630787045], +[0.1239848921023, 0.04129596933739], +[0.1290528796814, 0.04115988341237], +[0.1341217479358, 0.04101801164276], +[0.1391915305326, 0.04087031409994], +[0.1442622610626, 0.04071674938629], +[0.1493339730423, 0.04055727464245], +[0.1544066999156, 0.04039184555477], +[0.1594804750568, 0.04022041636289], +[0.1645553317737, 0.04004293986776], +[0.1696313033111, 0.03985936743966], +[0.1747084228549, 0.03966964902655], +[0.1797867235373, 0.03947373316266], +[0.1848662384421, 0.03927156697726], +[0.18994700061, 0.03906309620369], +[0.1950290430462, 0.03884826518866], +[0.2001123987264, 0.03862701690172], +[0.2051971006055, 0.03839929294504], +[0.2102831816254, 0.03816503356348], +[0.2153706747242, 0.03792417765486], +[0.220459612846, 0.03767666278056], +[0.2255500289508, 0.03742242517643], +[0.2306419560259, 0.03716139976398], +[0.2357354270972, 0.03689352016193], +[0.2408304752416, 0.03661871869809], +[0.2459271335999, 0.03633692642163], +[0.2510254353903, 0.03604807311568], +[0.2561254139227, 0.03575208731046], +[0.2612271026137, 0.03544889629668], +[0.266330535002, 0.03513842613962], +[0.2714357447646, 0.03482060169336], +[0.2765427657336, 0.03449534661607], +[0.2816516319137, 0.03416258338528], +[0.2867623775003, 0.03382223331404], +[0.291875036898, 0.03347421656775], +[0.2969896447397, 0.03311845218145], +[0.3021062359069, 0.03275485807798], +[0.3072248455491, 0.03238335108679], +[0.3123455091055, 0.03200384696358], +[0.3174682623255, 0.03161626041072], +[0.322593141291, 0.0312205050986], +[0.3277201824379, 0.03081649368785], +[0.332849422579, 0.03040413785255], +[0.3379808989264, 0.02998334830446], +[0.3431146491149, 0.02955403481829], +[0.3482507112247, 0.02911610625815], +[0.3533891238053, 0.02866947060509], +[0.3585299258986, 0.02821403498592], +[0.3636731570625, 0.02774970570326], +[0.3688188573943, 0.02727638826698], +[0.3739670675544, 0.02679398742691], +[0.3791178287887, 0.02630240720712], +[0.3842711829522, 0.02580155094154], +[0.389427172531, 0.02529132131119], +[0.3945858406647, 0.02477162038295], +[0.3997472311675, 0.02424234964997], +[0.4049113885494, 0.0237034100737], +[0.4100783580362, 0.02315470212765], +[-0.4073073161321, 0.02795428749549], +[-0.4021396960606, 0.02849638478543], +[-0.3969750165146, 0.02902880197161], +[-0.3918132319033, 0.02955163697563], +[-0.386654297275, 0.03006498726331], +[-0.3814981682991, 0.03056894980139], +[-0.3763448012464, 0.03106362101582], +[-0.3711941529695, 0.03154909675159], +[-0.366046180883, 0.03202547223416], +[-0.3609008429423, 0.0324928420323], +[-0.3557580976227, 0.03295130002241], +[-0.3506179038982, 0.0334009393542], +[-0.3454802212198, 0.03384185241779], +[-0.3403450094941, 0.03427413081201], +[-0.3352122290615, 0.03469786531406], +[-0.3300818406747, 0.03511314585031], +[-0.3249538054767, 0.03552006146827], +[-0.3198280849801, 0.03591870030968], +[-0.3147046410451, 0.0363091495847], +[-0.3095834358593, 0.03669149554701], +[-0.3044644319161, 0.03706582347], +[-0.2993475919952, 0.03743221762381], +[-0.294232879142, 0.03779076125326], +[-0.2891202566483, 0.03814153655665], +[-0.2840096880328, 0.0384846246653], +[-0.2789011370229, 0.03882010562389], +[-0.2737945675363, 0.03914805837148], +[-0.268689943663, 0.03946856072322], +[-0.2635872296485, 0.03978168935271], +[-0.2584863898772, 0.04008751977495], +[-0.2533873888563, 0.04038612632987], +[-0.2482901912002, 0.04067758216638], +[-0.243194761616, 0.04096195922696], +[-0.238101064889, 0.04123932823274], +[-0.2330090658692, 0.04150975866899], +[-0.2279187294581, 0.04177331877111], +[-0.2228300205967, 0.04203007551096], +[-0.2177429042533, 0.04228009458366], +[-0.2126573454128, 0.04252344039467], +[-0.2075733090658, 0.04276017604731], +[-0.2024907601989, 0.04299036333057], +[-0.1974096637854, 0.04321406270723], +[-0.1923299847768, 0.04343133330236], +[-0.1872516880943, 0.04364223289201], +[-0.182174738622, 0.04384681789229], +[-0.1770991011994, 0.04404514334868], +[-0.1720247406157, 0.04423726292559], +[-0.1669516216035, 0.04442322889624], +[-0.1618797088343, 0.04460309213277], +[-0.1568089669136, 0.04477690209658], +[-0.1517393603767, 0.044944706829], +[-0.1466708536858, 0.045106552942], +[-0.1416034112261, 0.04526248560957], +[-0.1365369973045, 0.04541254855883], +[-0.1314715761465, 0.04555678406177], +[-0.1264071118954, 0.04569523292703], +[-0.1213435686112, 0.04582793449207], +[-0.1162809102699, 0.04595492661546], +[-0.111219100763, 0.04607624566956], +[-0.1061581038985, 0.04619192653329], +[-0.1010978834012, 0.04630200258534], +[-0.09603840291368, 0.04640650569749], +[-0.09097962599789, 0.04650546622832], +[-0.08592151613694, 0.0465989130171], +[-0.08086403673722, 0.04668687337799], +[-0.07580715113085, 0.04676937309457], +[-0.07075082257847, 0.04684643641453], +[-0.06569501427229, 0.0469180860448], +[-0.06063968933942, 0.04698434314685], +[-0.05558481084544, 0.04704522733238], +[-0.05053034179825, 0.04710075665925], +[-0.04547624515205, 0.04715094762771], +[-0.04042248381165, 0.04719581517706], +[-0.03536902063683, 0.04723537268242], +[-0.03031581844697, 0.04726963195204], +[-0.02526284002572, 0.04729860322473], +[-0.02021004812594, 0.04732229516778], +[-0.0151574054746, 0.04734071487509], +[-0.0101048747779, 0.04735386786572], +[-0.005052418726351, 0.04736175808265], +[-6.369338240271e-17, 0.04736438789205], +[0.005052418726351, 0.04736175808265], +[0.0101048747779, 0.04735386786572], +[0.0151574054746, 0.04734071487509], +[0.02021004812594, 0.04732229516777], +[0.02526284002572, 0.04729860322473], +[0.03031581844697, 0.04726963195204], +[0.03536902063683, 0.04723537268242], +[0.04042248381165, 0.04719581517706], +[0.04547624515205, 0.04715094762771], +[0.05053034179824, 0.04710075665924], +[0.05558481084544, 0.04704522733238], +[0.06063968933942, 0.04698434314685], +[0.06569501427229, 0.0469180860448], +[0.07075082257847, 0.04684643641453], +[0.07580715113085, 0.04676937309457], +[0.08086403673722, 0.04668687337799], +[0.08592151613694, 0.0465989130171], +[0.09097962599789, 0.04650546622832], +[0.09603840291368, 0.04640650569749], +[0.1010978834012, 0.04630200258534], +[0.1061581038985, 0.04619192653329], +[0.111219100763, 0.04607624566956], +[0.1162809102698, 0.04595492661547], +[0.1213435686112, 0.04582793449207], +[0.1264071118954, 0.04569523292703], +[0.1314715761464, 0.04555678406177], +[0.1365369973045, 0.04541254855883], +[0.1416034112261, 0.04526248560957], +[0.1466708536858, 0.045106552942], +[0.1517393603768, 0.04494470682897], +[0.1568089669136, 0.04477690209658], +[0.1618797088343, 0.04460309213277], +[0.1669516216035, 0.04442322889624], +[0.1720247406157, 0.04423726292559], +[0.1770991011994, 0.04404514334868], +[0.182174738622, 0.04384681789229], +[0.1872516880943, 0.04364223289201], +[0.1923299847768, 0.04343133330236], +[0.1974096637854, 0.04321406270723], +[0.2024907601989, 0.04299036333057], +[0.2075733090658, 0.04276017604731], +[0.2126573454128, 0.04252344039467], +[0.2177429042533, 0.04228009458366], +[0.2228300205967, 0.04203007551096], +[0.2279187294581, 0.04177331877111], +[0.2330090658692, 0.04150975866899], +[0.238101064889, 0.04123932823274], +[0.243194761616, 0.04096195922696], +[0.2482901912002, 0.04067758216638], +[0.2533873888563, 0.04038612632987], +[0.2584863898772, 0.04008751977495], +[0.2635872296485, 0.03978168935271], +[0.268689943663, 0.03946856072322], +[0.2737945675363, 0.03914805837148], +[0.2789011370229, 0.03882010562389], +[0.2840096880328, 0.0384846246653], +[0.2891202566483, 0.03814153655665], +[0.294232879142, 0.03779076125326], +[0.2993475919952, 0.03743221762381], +[0.3044644319161, 0.03706582347], +[0.3095834358593, 0.03669149554701], +[0.3147046410451, 0.0363091495847], +[0.3198280849801, 0.03591870030968], +[0.3249538054767, 0.03552006146827], +[0.3300818406747, 0.03511314585031], +[0.3352122290615, 0.03469786531406], +[0.3403450094941, 0.03427413081201], +[0.3454802212198, 0.03384185241779], +[0.3506179038982, 0.0334009393542], +[0.3557580976227, 0.03295130002241], +[0.3609008429423, 0.0324928420323], +[0.366046180883, 0.03202547223416], +[0.3711941529695, 0.03154909675159], +[0.3763448012464, 0.03106362101582], +[0.3814981682991, 0.03056894980139], +[0.386654297275, 0.03006498726331], +[0.3918132319033, 0.02955163697563], +[0.3969750165146, 0.02902880197161], +[0.4021396960606, 0.02849638478543], +[0.4073073161321, 0.02795428749549], +[-0.4045333026988, 0.03275901970276], +[-0.3993652163129, 0.03329444635009], +[-0.3942001972542, 0.03382028071665], +[-0.389038199511, 0.03433661919015], +[-0.3838791776369, 0.03484355773376], +[-0.3787230867338, 0.0353411918431], +[-0.3735698824347, 0.03582961650488], +[-0.3684195208858, 0.03630892615692], +[-0.3632719587273, 0.03677921464963], +[-0.3581271530751, 0.03724057520896], +[-0.3529850615013, 0.03769310040055], +[-0.3478456420144, 0.03813688209541], +[-0.34270885304, 0.03857201143671], +[-0.3375746534006, 0.03899857880786], +[-0.3324430022956, 0.03941667380181], +[-0.3273138592819, 0.03982638519144], +[-0.3221871842536, 0.04022780090112], +[-0.3170629374225, 0.04062100797922], +[-0.3119410792985, 0.04100609257174], +[-0.3068215706703, 0.04138313989683], +[-0.3017043725865, 0.04175223422031], +[-0.2965894463367, 0.04211345883196], +[-0.2914767534332, 0.04246689602279], +[-0.2863662555929, 0.04281262706298], +[-0.2812579147197, 0.04315073218066], +[-0.2761516928875, 0.04348129054143], +[-0.2710475523234, 0.04380438022847], +[-0.2659454553912, 0.0441200782234], +[-0.2608453645763, 0.04442846038774], +[-0.2557472424697, 0.0447296014449], +[-0.2506510517542, 0.0450235749628], +[-0.2455567551896, 0.04531045333702], +[-0.2404643155996, 0.04559030777434], +[-0.2353736958584, 0.04586320827693], +[-0.2302848588788, 0.04612922362686], +[-0.2251977676, 0.04638842137107], +[-0.2201123849767, 0.0466408678068], +[-0.2150286739679, 0.04688662796739], +[-0.2099465975277, 0.04712576560837], +[-0.2048661185949, 0.04735834319408], +[-0.1997872000852, 0.04758442188447], +[-0.1947098048818, 0.04780406152231], +[-0.1896338958285, 0.04801732062075], +[-0.1845594357225, 0.04822425635107], +[-0.1794863873073, 0.04842492453091], +[-0.1744147132674, 0.0486193796126], +[-0.1693443762226, 0.04880767467194], +[-0.1642753387231, 0.04898986139716], +[-0.1592075632449, 0.0491659900782], +[-0.1541410121868, 0.04933610959626], +[-0.1490756478661, 0.04950026741359], +[-0.1440114325166, 0.04965850956363], +[-0.138948328286, 0.04981088064132], +[-0.133886297234, 0.04995742379378], +[-0.1288253013313, 0.05009818071116], +[-0.1237653024583, 0.05023319161784], +[-0.118706262405, 0.0503624952639], +[-0.1136481428711, 0.0504861289168], +[-0.1085909054659, 0.05060412835347], +[-0.1035345117096, 0.0507165278525], +[-0.09847892303428, 0.05082336018681], +[-0.0934241007856, 0.05092465661652], +[-0.08837000622459, 0.05102044688206], +[-0.08331660053001, 0.05111075919772], +[-0.07826384480093, 0.05119562024541], +[-0.07321170005958, 0.05127505516874], +[-0.06816012725457, 0.05134908756746], +[-0.06310908726435, 0.05141773949219], +[-0.05805854090092, 0.05148103143944], +[-0.05300844891378, 0.05153898234707], +[-0.0479587719941, 0.05159160958997], +[-0.04290947077912, 0.05163892897614], +[-0.03786050585671, 0.0516809547431], +[-0.0328118377701, 0.05171769955464], +[-0.02776342702278, 0.05174917449796], +[-0.02271523408354, 0.05177538908108], +[-0.01766721939159, 0.05179635123071], +[-0.0126193433618, 0.0518120672904], +[-0.007571566390045, 0.05182254201911], +[-0.002523848858569, 0.05182777859006], +[0.002523848858569, 0.05182777859006], +[0.007571566390044, 0.05182254201911], +[0.0126193433618, 0.05181206729041], +[0.01766721939159, 0.05179635123071], +[0.02271523408354, 0.05177538908108], +[0.02776342702278, 0.05174917449796], +[0.0328118377701, 0.05171769955464], +[0.03786050585671, 0.0516809547431], +[0.04290947077912, 0.05163892897614], +[0.0479587719941, 0.05159160958997], +[0.05300844891378, 0.05153898234707], +[0.05805854090092, 0.05148103143944], +[0.06310908726435, 0.05141773949219], +[0.06816012725457, 0.05134908756746], +[0.07321170005958, 0.05127505516874], +[0.07826384480093, 0.05119562024541], +[0.08331660053001, 0.05111075919772], +[0.08837000622459, 0.05102044688206], +[0.0934241007856, 0.05092465661652], +[0.09847892303429, 0.05082336018682], +[0.1035345117096, 0.0507165278525], +[0.1085909054659, 0.05060412835347], +[0.1136481428711, 0.05048612891681], +[0.118706262405, 0.0503624952639], +[0.1237653024583, 0.05023319161784], +[0.1288253013313, 0.05009818071116], +[0.133886297234, 0.04995742379378], +[0.138948328286, 0.04981088064132], +[0.1440114325166, 0.04965850956363], +[0.1490756478661, 0.04950026741359], +[0.1541410121868, 0.04933610959626], +[0.1592075632449, 0.0491659900782], +[0.1642753387231, 0.04898986139716], +[0.1693443762226, 0.04880767467194], +[0.1744147132674, 0.0486193796126], +[0.1794863873073, 0.04842492453091], +[0.1845594357225, 0.04822425635107], +[0.1896338958285, 0.04801732062074], +[0.1947098048818, 0.04780406152231], +[0.1997872000852, 0.04758442188447], +[0.2048661185949, 0.04735834319408], +[0.2099465975277, 0.04712576560837], +[0.2150286739679, 0.04688662796739], +[0.2201123849767, 0.0466408678068], +[0.2251977676001, 0.04638842137096], +[0.2302848588788, 0.04612922362686], +[0.2353736958584, 0.04586320827693], +[0.2404643155996, 0.04559030777434], +[0.2455567551896, 0.04531045333702], +[0.2506510517542, 0.0450235749628], +[0.2557472424697, 0.0447296014449], +[0.2608453645763, 0.04442846038774], +[0.2659454553912, 0.0441200782234], +[0.2710475523234, 0.04380438022847], +[0.2761516928875, 0.04348129054143], +[0.2812579147197, 0.04315073218066], +[0.2863662555929, 0.04281262706298], +[0.2914767534332, 0.04246689602279], +[0.2965894463367, 0.04211345883196], +[0.3017043725865, 0.04175223422031], +[0.3068215706703, 0.04138313989683], +[0.3119410792985, 0.04100609257174], +[0.3170629374225, 0.04062100797922], +[0.3221871842536, 0.04022780090112], +[0.3273138592819, 0.03982638519144], +[0.3324430022956, 0.03941667380181], +[0.3375746534006, 0.03899857880786], +[0.34270885304, 0.03857201143671], +[0.3478456420144, 0.03813688209541], +[0.3529850615013, 0.03769310040055], +[0.3581271530751, 0.03724057520896], +[0.3632719587273, 0.03677921464964], +[0.3684195208858, 0.03630892615692], +[0.3735698824347, 0.03582961650488], +[0.3787230867338, 0.0353411918431], +[0.3838791776369, 0.03484355773376], +[0.389038199511, 0.03433661919015], +[0.3942001972542, 0.03382028071665], +[0.3993652163129, 0.0332944463501], +[0.4045333026988, 0.03275901970276], +[-0.401755982012, 0.03756907830009], +[-0.3965880463696, 0.03809742483303], +[-0.3914228686256, 0.03861661736017], +[-0.386260836916, 0.03912639995657], +[-0.3811019052476, 0.03962686715126], +[-0.3759460281056, 0.04011811303637], +[-0.3707931604381, 0.04060023122584], +[-0.3656432576393, 0.04107331481567], +[-0.3604962755333, 0.04153745634546], +[-0.3553521703559, 0.04199274776124], +[-0.3502108987378, 0.04243928037966], +[-0.3450724176861, 0.04287714485339], +[-0.3399366845668, 0.04330643113772], +[-0.334803657086, 0.04372722845835], +[-0.3296732932724, 0.04413962528027], +[-0.3245455514584, 0.04454370927783], +[-0.3194203902624, 0.04493956730567], +[-0.3142977685705, 0.04532728537085], +[-0.3091776455189, 0.04570694860582], +[-0.3040599804758, 0.04607864124233], +[-0.2989447330243, 0.04644244658628], +[-0.2938318629452, 0.04679844699334], +[-0.2887213301997, 0.0471467238454], +[-0.2836130949139, 0.04748735752783], +[-0.2785071173615, 0.04782042740741], +[-0.2734033579491, 0.04814601181099], +[-0.2683017772002, 0.04846418800483], +[-0.263202335741, 0.04877503217449], +[-0.2581049942855, 0.04907861940546], +[-0.2530097136221, 0.04937502366424], +[-0.2479164545999, 0.04966431778001], +[-0.2428251781161, 0.04994657342682], +[-0.2377358451038, 0.05022186110629], +[-0.2326484165198, 0.05049025013076], +[-0.2275628533338, 0.05075180860687], +[-0.2224791165177, 0.05100660341961], +[-0.2173971670353, 0.05125470021676], +[-0.2123169658328, 0.05149616339374], +[-0.20723847383, 0.05173105607881], +[-0.2021616519116, 0.05195944011866], +[-0.1970864609196, 0.05218137606437], +[-0.1920128616459, 0.05239692315763], +[-0.1869408148253, 0.05260613931741], +[-0.1818702811297, 0.05280908112683], +[-0.1768012211623, 0.05300580382045], +[-0.1717335954521, 0.05319636127183], +[-0.1666673644499, 0.05338080598133], +[-0.1616024885238, 0.05355918906433], +[-0.1565389279558, 0.05373156023967], +[-0.1514766429387, 0.05389796781835], +[-0.1464155935737, 0.05405845869267], +[-0.141355739868, 0.05421307832547], +[-0.1362970417333, 0.05436187073981], +[-0.131239458985, 0.05450487850891], +[-0.1261829513409, 0.05464214274631], +[-0.1211274784215, 0.05477370309646], +[-0.1160729997499, 0.05489959772553], +[-0.1110194747522, 0.05501986331249], +[-0.1059668627588, 0.05513453504061], +[-0.1009151230056, 0.05524364658919], +[-0.09586421463577, 0.05534723012562], +[-0.0908140967017, 0.05544531629779], +[-0.08576472816751, 0.05553793422682], +[-0.08071606791174, 0.0556251115001], +[-0.07566807473041, 0.05570687416468], +[-0.07062070734034, 0.05578324672104], +[-0.06557392438274, 0.05585425211713], +[-0.06052768442707, 0.05591991174286], +[-0.05548194597517, 0.05598024542485], +[-0.05043666746554, 0.05603527142163], +[-0.04539180727793, 0.05608500641915], +[-0.04034732373803, 0.0561294655267], +[-0.03530317512239, 0.05616866227318], +[-0.03025931966348, 0.05620260860376], +[-0.02521571555489, 0.05623131487692], +[-0.02017232095666, 0.05625478986189], +[-0.01512909400069, 0.05627304073648], +[-0.01008599279629, 0.05628607308529], +[-0.005042975435757, 0.0562938908983], +[-3.184669120136e-17, 0.0562964965699], +[0.005042975435757, 0.0562938908983], +[0.01008599279629, 0.05628607308529], +[0.01512909400069, 0.05627304073648], +[0.02017232095666, 0.05625478986189], +[0.02521571555489, 0.05623131487692], +[0.03025931966348, 0.05620260860376], +[0.03530317512239, 0.05616866227318], +[0.04034732373803, 0.0561294655267], +[0.04539180727793, 0.05608500641915], +[0.05043666746554, 0.05603527142163], +[0.05548194597517, 0.05598024542485], +[0.06052768442707, 0.05591991174286], +[0.06557392438274, 0.05585425211713], +[0.07062070734034, 0.05578324672104], +[0.07566807473041, 0.05570687416468], +[0.08071606791174, 0.0556251115001], +[0.08576472816751, 0.05553793422682], +[0.0908140967017, 0.05544531629779], +[0.09586421463577, 0.05534723012561], +[0.1009151230056, 0.05524364658919], +[0.1059668627588, 0.05513453504061], +[0.1110194747522, 0.05501986331249], +[0.1160729997499, 0.05489959772553], +[0.1211274784215, 0.05477370309646], +[0.1261829513409, 0.05464214274631], +[0.131239458985, 0.05450487850891], +[0.1362970417333, 0.05436187073981], +[0.141355739868, 0.05421307832547], +[0.1464155935737, 0.05405845869267], +[0.1514766429387, 0.05389796781835], +[0.1565389279558, 0.05373156023967], +[0.1616024885238, 0.05355918906433], +[0.1666673644499, 0.05338080598133], +[0.1717335954521, 0.05319636127183], +[0.1768012211623, 0.05300580382045], +[0.1818702811297, 0.05280908112683], +[0.1869408148253, 0.05260613931741], +[0.1920128616459, 0.05239692315763], +[0.1970864609196, 0.05218137606437], +[0.2021616519116, 0.05195944011866], +[0.20723847383, 0.05173105607881], +[0.2123169658328, 0.05149616339374], +[0.2173971670353, 0.05125470021676], +[0.2224791165177, 0.05100660341961], +[0.2275628533338, 0.05075180860687], +[0.2326484165198, 0.05049025013076], +[0.2377358451038, 0.05022186110629], +[0.2428251781161, 0.04994657342682], +[0.2479164545999, 0.04966431778001], +[0.2530097136221, 0.04937502366424], +[0.2581049942855, 0.04907861940546], +[0.263202335741, 0.04877503217449], +[0.2683017772002, 0.04846418800483], +[0.2734033579491, 0.04814601181099], +[0.2785071173615, 0.04782042740741], +[0.2836130949139, 0.04748735752783], +[0.2887213301997, 0.0471467238454], +[0.2938318629452, 0.04679844699334], +[0.2989447330243, 0.04644244658628], +[0.3040599804758, 0.04607864124233], +[0.3091776455189, 0.04570694860582], +[0.3142977685705, 0.04532728537085], +[0.3194203902624, 0.04493956730567], +[0.3245455514584, 0.04454370927783], +[0.3296732932724, 0.04413962528027], +[0.3348036570861, 0.04372722845835], +[0.3399366845668, 0.04330643113772], +[0.3450724176861, 0.04287714485339], +[0.3502108987378, 0.04243928037966], +[0.3553521703559, 0.04199274776124], +[0.3604962755333, 0.04153745634546], +[0.3656432576393, 0.04107331481567], +[0.3707931604381, 0.04060023122584], +[0.3759460281056, 0.04011811303637], +[0.3811019052476, 0.03962686715126], +[0.386260836916, 0.03912639995657], +[0.3914228686256, 0.03861661736017], +[0.3965880463696, 0.03809742483303], +[0.4017559823386, 0.0375690775992], +[-0.3989762480539, 0.04238331484802], +[-0.3938082827296, 0.0429051513624], +[-0.3886431253564, 0.04341764443234], +[-0.3834812370869, 0.04392081325138], +[-0.3783225713299, 0.04441475098163], +[-0.3731670819056, 0.04489955037755], +[-0.3680147230305, 0.04537530374641], +[-0.3628654493039, 0.0458421029055], +[-0.3577192156913, 0.04630003914675], +[-0.3525759775094, 0.046749203198], +[-0.3474356904097, 0.04718968518731], +[-0.3422983103626, 0.04762157460819], +[-0.3371637936409, 0.04804496028592], +[-0.332032096803, 0.04845993034499], +[-0.3269031766765, 0.04886657217766], +[-0.3217769903417, 0.04926497241347], +[-0.3166534951148, 0.04965521688982], +[-0.3115326485316, 0.05003739062344], +[-0.3064144083312, 0.0504115777828], +[-0.3012987324397, 0.05077786166143], +[-0.2961855789544, 0.05113632465205], +[-0.2910749061282, 0.0514870482215], +[-0.2859666723542, 0.05183011288646], +[-0.2808608361507, 0.05216559818994], +[-0.2757573561466, 0.05249358267835], +[-0.2706561910667, 0.05281414387943], +[-0.2655572997185, 0.05312735828064], +[-0.2604606409783, 0.05343330130829], +[-0.255366173778, 0.05373204730725], +[-0.2502738570933, 0.05402366952103], +[-0.2451836499306, 0.05430824007268], +[-0.2400955113163, 0.05458582994604], +[-0.2350094002853, 0.05485650896741], +[-0.2299252758704, 0.05512034578786], +[-0.2248430970922, 0.0553774078659], +[-0.2197628229498, 0.05562776145042], +[-0.2146844124116, 0.05587147156447], +[-0.2096078244068, 0.05610860198892], +[-0.2045330178174, 0.0563392152469], +[-0.199459951471, 0.05656337258835], +[-0.1943885841336, 0.05678113397515], +[-0.1893188745034, 0.05699255806643], +[-0.184250781205, 0.05719770220427], +[-0.1791842627837, 0.05739662239981], +[-0.1741192777014, 0.05758937331958], +[-0.1690557843315, 0.05777600827223], +[-0.1639937409557, 0.05795657919554], +[-0.1589331057604, 0.0581311366438], +[-0.1538738368339, 0.0582997297754], +[-0.1488158921644, 0.05846240634087], +[-0.1437592296377, 0.05861921267116], +[-0.1387038070359, 0.05877019366622], +[-0.1336495820367, 0.05891539278395], +[-0.1285965122129, 0.05905485202941], +[-0.1235445550318, 0.05918861194446], +[-0.1184936678561, 0.05931671159756], +[-0.1134438079446, 0.05943918857405], +[-0.1083949324529, 0.05955607896669], +[-0.1033469984353, 0.05966741736656], +[-0.09829996284672, 0.05977323685429], +[-0.09325378254461, 0.05987356899162], +[-0.08820841429173, 0.05996844381339], +[-0.083163814759, 0.06005788981979], +[-0.07811994052865, 0.06014193396906], +[-0.07307674809775, 0.06022060167049], +[-0.06803419388194, 0.06029391677781], +[-0.06299223421945, 0.06036190158305], +[-0.05795082537534, 0.06042457681064], +[-0.05290992354607, 0.060481961612], +[-0.0478694848641, 0.06053407356051], +[-0.04282946540286, 0.06058092864687], +[-0.0377898211818, 0.06062254127487], +[-0.03275050817165, 0.06065892425756], +[-0.0277114822998, 0.06069008881385], +[-0.02267269945579, 0.06071604456553], +[-0.01763411549698, 0.06073679953469], +[-0.01259568625428, 0.06075236014159], +[-0.007557367537887, 0.0607627312029], +[-0.002519115143219, 0.06076791593049], +[0.002519115143219, 0.06076791593049], +[0.007557367537887, 0.0607627312029], +[0.01259568625428, 0.06075236014159], +[0.01763411549698, 0.06073679953469], +[0.02267269945579, 0.06071604456553], +[0.02771148229979, 0.06069008881385], +[0.03275050817165, 0.06065892425756], +[0.0377898211818, 0.06062254127487], +[0.04282946540286, 0.06058092864687], +[0.0478694848641, 0.06053407356051], +[0.05290992354607, 0.060481961612], +[0.05795082537535, 0.06042457681064], +[0.06299223421945, 0.06036190158305], +[0.06803419388194, 0.06029391677782], +[0.07307674809775, 0.06022060167049], +[0.07811994052865, 0.06014193396906], +[0.083163814759, 0.06005788981979], +[0.08820841429173, 0.05996844381339], +[0.09325378254461, 0.05987356899162], +[0.09829996284672, 0.05977323685429], +[0.1033469984353, 0.05966741736656], +[0.1083949324529, 0.05955607896669], +[0.1134438079446, 0.05943918857405], +[0.1184936678561, 0.05931671159756], +[0.1235445550318, 0.05918861194446], +[0.1285965122129, 0.05905485202942], +[0.1336495820367, 0.05891539278395], +[0.1387038070359, 0.05877019366622], +[0.1437592296377, 0.05861921267116], +[0.1488158921644, 0.05846240634087], +[0.1538738368339, 0.0582997297754], +[0.1589331057604, 0.0581311366438], +[0.1639937409557, 0.05795657919554], +[0.1690557843315, 0.05777600827223], +[0.1741192777014, 0.05758937331958], +[0.1791842627837, 0.05739662239981], +[0.184250781205, 0.05719770220427], +[0.1893188745034, 0.05699255806643], +[0.1943885841336, 0.05678113397515], +[0.199459951471, 0.05656337258835], +[0.2045330178174, 0.0563392152469], +[0.2096078244068, 0.05610860198892], +[0.2146844124116, 0.05587147156447], +[0.2197628229498, 0.05562776145042], +[0.2248430970921, 0.05537740786592], +[0.2299252758704, 0.05512034578786], +[0.2350094002853, 0.05485650896741], +[0.2400955113163, 0.05458582994604], +[0.2451836499306, 0.05430824007268], +[0.2502738570933, 0.05402366952103], +[0.255366173778, 0.05373204730725], +[0.2604606409783, 0.05343330130824], +[0.2655572997185, 0.05312735828064], +[0.2706561910667, 0.05281414387943], +[0.2757573561466, 0.05249358267835], +[0.2808608361507, 0.05216559818994], +[0.2859666723542, 0.05183011288647], +[0.2910749061282, 0.0514870482215], +[0.2961855789544, 0.05113632465205], +[0.3012987324397, 0.05077786166143], +[0.3064144083312, 0.0504115777828], +[0.3115326485316, 0.05003739062344], +[0.3166534951148, 0.04965521688982], +[0.3217769903417, 0.04926497241347], +[0.3269031766765, 0.04886657217766], +[0.332032096803, 0.04845993034499], +[0.3371637936409, 0.04804496028592], +[0.3422983103626, 0.04762157460819], +[0.3474356904097, 0.04718968518731], +[0.3525759775094, 0.046749203198], +[0.3577192156913, 0.04630003914675], +[0.3628654493039, 0.0458421029055], +[0.3680147230305, 0.04537530374641], +[0.3731670819055, 0.04489955037779], +[0.3783225713299, 0.04441475098163], +[0.3834812370869, 0.04392081325138], +[0.3886431253564, 0.04341764443234], +[0.3938082827296, 0.0429051513624], +[0.398976248062, 0.04238331483281], +[-0.3961940543572, 0.04720282079921], +[-0.3910260213538, 0.04771745808226], +[-0.3858610616871, 0.0482231954718], +[-0.3806994925544, 0.04871969405133], +[-0.3755412667173, 0.04920704568193], +[-0.3703863372831, 0.04968534184588], +[-0.3652346576924, 0.05015467360578], +[-0.3600861817056, 0.05061513156479], +[-0.3549408633893, 0.0510668058282], +[-0.349798657102, 0.05150978596609], +[-0.3446595174795, 0.05194416097719], +[-0.3395233994205, 0.05237001925383], +[-0.3343902580716, 0.052787448548], +[-0.3292600488123, 0.05319653593841], +[-0.3241327272401, 0.05359736779865], +[-0.3190082491553, 0.05399002976625], +[-0.3138865705458, 0.0543746067127], +[-0.3087676475726, 0.05475118271443], +[-0.3036514365548, 0.05511984102459], +[-0.2985378939548, 0.05548066404571], +[-0.293426976364, 0.05583373330317], +[-0.2883186404888, 0.05617912941943], +[-0.2832128431363, 0.05651693208901], +[-0.278109541201, 0.05684722005414], +[-0.2730086916515, 0.05717007108117], +[-0.2679102515172, 0.05748556193752], +[-0.2628141778762, 0.05779376836937], +[-0.257720427843, 0.05809476507984], +[-0.2526289585566, 0.05838862570778], +[-0.2475397271696, 0.05867542280717], +[-0.2424526908366, 0.0589552278269], +[-0.2373678067048, 0.05922811109118], +[-0.232285031903, 0.05949414178036], +[-0.2272043235332, 0.05975338791225], +[-0.2221256386607, 0.06000591632384], +[-0.2170489343063, 0.06025179265351], +[-0.2119741674379, 0.06049108132357], +[-0.2069012949634, 0.06072384552331], +[-0.2018302737233, 0.06095014719231], +[-0.1967610604845, 0.06117004700428], +[-0.1916936119345, 0.06138360435109], +[-0.1866278846754, 0.0615908773274], +[-0.1815638352195, 0.06179192271516], +[-0.1765014199844, 0.0619867959694], +[-0.1714405952894, 0.06217555120319], +[-0.1663813173516, 0.06235824117377], +[-0.1613235422834, 0.06253491726877], +[-0.1562672260893, 0.06270562949269], +[-0.1512123246644, 0.06287042645383], +[-0.1461587937926, 0.0630293553515], +[-0.1411065891453, 0.06318246196361], +[-0.1360556662808, 0.06332979063448], +[-0.1310059806442, 0.06347138426319], +[-0.125957487567, 0.06360728429209], +[-0.1209101422681, 0.06373753069577], +[-0.1158638998546, 0.06386216197034], +[-0.1108187153231, 0.06398121512305], +[-0.1057745435614, 0.06409472566233], +[-0.1007313393504, 0.06420272758813], +[-0.0956890573668, 0.06430525338268], +[-0.0906476521856, 0.06440233400161], +[-0.08560707828321, 0.06449399886547], +[-0.08056729004082, 0.06458027585157], +[-0.07552824174805, 0.06466119128636], +[-0.07048988760688, 0.06473676993804], +[-0.06545218173579, 0.06480703500972], +[-0.06041507817428, 0.06487200813291], +[-0.05537853088744, 0.06493170936145], +[-0.05034249377091, 0.06498615716589], +[-0.04530692065592, 0.06503536842827], +[-0.04027176531455, 0.06507935843733], +[-0.03523698146521, 0.06511814088422], +[-0.03020252277816, 0.06515172785853], +[-0.02516834288126, 0.06518012984496], +[-0.02013439536584, 0.06520335572021], +[-0.01510063379256, 0.06522141275052], +[-0.01006701169751, 0.06523430658959], +[-0.00503348259826, 0.0652420412769], +[-1.592334560068e-16, 0.06524461923663], +[0.00503348259826, 0.0652420412769], +[0.01006701169751, 0.06523430658959], +[0.01510063379256, 0.06522141275052], +[0.02013439536584, 0.06520335572021], +[0.02516834288126, 0.06518012984496], +[0.03020252277816, 0.06515172785853], +[0.03523698146521, 0.06511814088421], +[0.04027176531455, 0.06507935843733], +[0.04530692065592, 0.06503536842827], +[0.05034249377091, 0.06498615716589], +[0.05537853088744, 0.06493170936145], +[0.06041507817428, 0.06487200813291], +[0.06545218173579, 0.06480703500972], +[0.07048988760688, 0.06473676993804], +[0.07552824174805, 0.06466119128636], +[0.08056729004082, 0.06458027585157], +[0.0856070782832, 0.06449399886546], +[0.0906476521856, 0.06440233400161], +[0.0956890573668, 0.06430525338268], +[0.1007313393504, 0.06420272758813], +[0.1057745435614, 0.06409472566233], +[0.1108187153231, 0.06398121512305], +[0.1158638998546, 0.06386216197034], +[0.1209101422681, 0.06373753069577], +[0.125957487567, 0.06360728429209], +[0.1310059806442, 0.06347138426319], +[0.1360556662808, 0.06332979063448], +[0.1411065891453, 0.06318246196361], +[0.1461587937926, 0.06302935535153], +[0.1512123246644, 0.06287042645383], +[0.1562672260893, 0.06270562949269], +[0.1613235422834, 0.06253491726877], +[0.1663813173516, 0.06235824117377], +[0.1714405952894, 0.06217555120319], +[0.1765014199844, 0.0619867959694], +[0.1815638352195, 0.06179192271516], +[0.1866278846754, 0.06159087732733], +[0.1916936119345, 0.06138360435109], +[0.1967610604845, 0.06117004700428], +[0.2018302737233, 0.06095014719231], +[0.2069012949634, 0.06072384552331], +[0.2119741674379, 0.06049108132357], +[0.2170489343063, 0.06025179265351], +[0.2221256386607, 0.06000591632384], +[0.2272043235332, 0.05975338791225], +[0.232285031903, 0.05949414178036], +[0.2373678067048, 0.05922811109118], +[0.2424526908366, 0.0589552278269], +[0.2475397271696, 0.05867542280717], +[0.2526289585566, 0.05838862570778], +[0.257720427843, 0.05809476507984], +[0.2628141778762, 0.05779376836937], +[0.2679102515172, 0.05748556193752], +[0.2730086916515, 0.05717007108117], +[0.278109541201, 0.05684722005414], +[0.2832128431363, 0.05651693208901], +[0.2883186404888, 0.05617912941943], +[0.293426976364, 0.05583373330317], +[0.2985378939548, 0.05548066404571], +[0.3036514365548, 0.05511984102459], +[0.3087676475726, 0.05475118271443], +[0.3138865705458, 0.0543746067127], +[0.3190082491553, 0.05399002976625], +[0.3241327272401, 0.05359736779865], +[0.3292600488123, 0.05319653593841], +[0.3343902580716, 0.052787448548], +[0.3395233994205, 0.05237001925384], +[0.3446595174795, 0.05194416097719], +[0.349798657102, 0.05150978596609], +[0.3549408633893, 0.0510668058282], +[0.3600861817056, 0.05061513156479], +[0.3652346576923, 0.05015467360578], +[0.3703863372831, 0.04968534184588], +[0.3755412667173, 0.04920704568193], +[0.3806994925544, 0.04871969405133], +[0.3858610616871, 0.0482231954718], +[0.3910260213538, 0.04771745808226], +[0.3961940547953, 0.04720281997446], +[-0.3934090120609, 0.05202626193306], +[-0.3882413576887, 0.0525341781071], +[-0.3830767713927, 0.05303310498047], +[-0.3779156954328, 0.05352287828862], +[-0.3727580818744, 0.05400358865616], +[-0.3676038830658, 0.05447532635653], +[-0.3624530516272, 0.05493818127119], +[-0.3573055404383, 0.05539224284982], +[-0.3521613026267, 0.0558376000718], +[-0.3470202915546, 0.05627434140874], +[-0.3418824608059, 0.05670255478814], +[-0.3367477641735, 0.05712232755802], +[-0.3316161556455, 0.0575337464527], +[-0.3264875893918, 0.05793689755949], +[-0.3213620197506, 0.05833186628635], +[-0.316239401215, 0.05871873733054], +[-0.311119688419, 0.05909759464807], +[-0.3060028361246, 0.05946852142413], +[-0.300888799208, 0.05983160004425], +[-0.2957775326468, 0.06018691206629], +[-0.2906689915063, 0.06053453819336], +[-0.2855631309278, 0.06087455824706], +[-0.2804599061149, 0.06120705114201], +[-0.275359272322, 0.06153209486054], +[-0.2702611848422, 0.0618497664284], +[-0.2651655989956, 0.06216014189084], +[-0.2600724701177, 0.06246329628948], +[-0.2549817535493, 0.06275930363965], +[-0.2498934046252, 0.06304823690831], +[-0.2448073786646, 0.06333016799253], +[-0.2397236309611, 0.06360516769843], +[-0.2346421167738, 0.06387330572067], +[-0.2295627913179, 0.06413465062238], +[-0.2244856097572, 0.06438926981556], +[-0.2194105271953, 0.06463722954188], +[-0.2143374986689, 0.06487859485402], +[-0.2092664791403, 0.06511342959727], +[-0.2041974234912, 0.06534179639169], +[-0.1991302865167, 0.06556375661455], +[-0.1940650229197, 0.0657793703832], +[-0.1890015873057, 0.06598869653836], +[-0.1839399341783, 0.06619179262767], +[-0.1788800179353, 0.06638871488974], +[-0.1738217928648, 0.06657951823846], +[-0.1687652131423, 0.06676425624771], +[-0.1637102328274, 0.06694298113646], +[-0.1586568058625, 0.06711574375414], +[-0.15360488607, 0.06728259356645], +[-0.1485544271518, 0.06744357864147], +[-0.1435053826877, 0.06759874563619], +[-0.1384577061354, 0.0677481397833], +[-0.1334113508302, 0.06789180487846], +[-0.1283662699853, 0.06802978326784], +[-0.1233224166929, 0.06816211583609], +[-0.1182797439248, 0.06828884199465], +[-0.1132382045342, 0.06840999967045], +[-0.1081977512577, 0.06852562529502], +[-0.1031583367174, 0.06863575379393], +[-0.09811991342342, 0.0687404185767], +[-0.09308243377683, 0.06883965152705], +[-0.08804585007303, 0.06893348299361], +[-0.08301011450517, 0.06902194178098], +[-0.07797517916798, 0.06910505514131], +[-0.07294099606191, 0.06918284876618], +[-0.06790751709749, 0.06925534677904], +[-0.06287469409992, 0.06932257172801], +[-0.05784247881398, 0.06938454457917], +[-0.05281082290903, 0.06944128471025], +[-0.04777967798433, 0.06949280990485], +[-0.04274899557451, 0.06953913634707], +[-0.03771872715516, 0.06958027861662], +[-0.03268882414865, 0.06961624968442], +[-0.02765923793006, 0.0696470609087], +[-0.02262991983322, 0.06967272203148], +[-0.01760082115688, 0.06969324117567], +[-0.01257189317097, 0.06970862484256], +[-0.007543087122923, 0.06971887790989], +[-0.002514354244041, 0.06972400363026], +[0.002514354244041, 0.06972400363026], +[0.007543087122923, 0.06971887790988], +[0.01257189317097, 0.06970862484257], +[0.01760082115688, 0.06969324117567], +[0.02262991983322, 0.06967272203148], +[0.02765923793006, 0.0696470609087], +[0.03268882414865, 0.06961624968442], +[0.03771872715516, 0.06958027861661], +[0.04274899557451, 0.06953913634707], +[0.04777967798433, 0.06949280990485], +[0.05281082290902, 0.06944128471025], +[0.05784247881397, 0.06938454457917], +[0.06287469409992, 0.06932257172802], +[0.06790751709749, 0.06925534677904], +[0.07294099606191, 0.06918284876618], +[0.07797517916798, 0.06910505514131], +[0.08301011450517, 0.06902194178098], +[0.08804585007303, 0.06893348299361], +[0.09308243377683, 0.06883965152705], +[0.09811991342342, 0.0687404185767], +[0.1031583367174, 0.06863575379393], +[0.1081977512577, 0.06852562529502], +[0.1132382045342, 0.06840999967045], +[0.1182797439248, 0.06828884199465], +[0.1233224166929, 0.06816211583609], +[0.1283662699853, 0.06802978326784], +[0.1334113508302, 0.06789180487846], +[0.1384577061354, 0.0677481397833], +[0.1435053826876, 0.0675987456362], +[0.1485544271518, 0.06744357864147], +[0.15360488607, 0.06728259356645], +[0.1586568058625, 0.06711574375414], +[0.1637102328274, 0.06694298113646], +[0.1687652131423, 0.06676425624771], +[0.1738217928648, 0.06657951823846], +[0.1788800179353, 0.06638871488974], +[0.1839399341783, 0.06619179262767], +[0.1890015873057, 0.06598869653836], +[0.1940650229197, 0.0657793703832], +[0.1991302865167, 0.06556375661455], +[0.2041974234912, 0.06534179639169], +[0.2092664791403, 0.06511342959727], +[0.2143374986689, 0.06487859485402], +[0.2194105271953, 0.06463722954188], +[0.2244856097572, 0.06438926981556], +[0.2295627913179, 0.06413465062238], +[0.2346421167738, 0.06387330572067], +[0.2397236309611, 0.06360516769843], +[0.2448073786646, 0.06333016799253], +[0.2498934046252, 0.06304823690831], +[0.2549817535493, 0.06275930363965], +[0.2600724701177, 0.06246329628948], +[0.2651655989956, 0.06216014189084], +[0.2702611848422, 0.0618497664284], +[0.275359272322, 0.06153209486054], +[0.2804599061149, 0.06120705114201], +[0.2855631309278, 0.06087455824706], +[0.2906689915063, 0.06053453819336], +[0.2957775326468, 0.06018691206629], +[0.300888799208, 0.05983160004425], +[0.3060028361246, 0.05946852142413], +[0.311119688419, 0.05909759464807], +[0.316239401215, 0.05871873733054], +[0.3213620197506, 0.05833186628635], +[0.3264875893918, 0.05793689755949], +[0.3316161556455, 0.0575337464527], +[0.3367477641735, 0.05712232755802], +[0.3418824608059, 0.05670255478814], +[0.3470202915546, 0.05627434140874], +[0.3521613026267, 0.0558376000718], +[0.3573055404383, 0.05539224284982], +[0.3624530516272, 0.05493818127119], +[0.3676038830658, 0.05447532635653], +[0.3727580818744, 0.05400358865616], +[0.3779156954328, 0.05352287828862], +[0.3830767713927, 0.05303310498046], +[0.3882413576887, 0.0525341781071], +[0.3934090125065, 0.05202626109275], +[-0.3906221030048, 0.05685392436712], +[-0.3854543866907, 0.05735514547764], +[-0.3802903478058, 0.05784720837971], +[-0.3751299374401, 0.05833020280733], +[-0.3699731069155, 0.05880421821192], +[-0.3648198077758, 0.05926934372093], +[-0.3596699917775, 0.05972566809574], +[-0.3545236108786, 0.06017327969307], +[-0.3493806172281, 0.06061226642573], +[-0.3442409631548, 0.06104271572504], +[-0.3391046011554, 0.06146471450424], +[-0.3339714838832, 0.0618783491229], +[-0.3288415641359, 0.06228370535225], +[-0.3237147948438, 0.06268086834152], +[-0.3185911290573, 0.06306992258514], +[-0.3134705199352, 0.06345095189087], +[-0.3083529207325, 0.06382403934872], +[-0.3032382847879, 0.0641892673008], +[-0.2981265655126, 0.06454671731184], +[-0.2930177163778, 0.06489647014061], +[-0.2879116909035, 0.06523860571192], +[-0.2828084426466, 0.0655732030895], +[-0.2777079251904, 0.06590034044944], +[-0.2726100921328, 0.06622009505433], +[-0.2675148970762, 0.06653254322804], +[-0.2624222936172, 0.0668377603311], +[-0.2573322353359, 0.06713582073665], +[-0.252244675787, 0.06742679780695], +[-0.24715956849, 0.06771076387048], +[-0.2420768669203, 0.0679877901995], +[-0.236996524501, 0.06825794698815], +[-0.2319184945942, 0.06852130333103], +[-0.2268427304938, 0.06877792720221], +[-0.2217691854177, 0.06902788543477], +[-0.2166978125014, 0.06927124370074], +[-0.2116285647912, 0.06950806649143], +[-0.2065613952386, 0.06973841709829], +[-0.2014962566944, 0.06996235759404], +[-0.1964331019037, 0.07017994881432], +[-0.1913718835014, 0.07039125033966], +[-0.1863125540079, 0.0705963204779], +[-0.1812550658256, 0.0707952162469], +[-0.1761993712351, 0.07098799335774], +[-0.171145422393, 0.07117470619821], +[-0.1660931713292, 0.07135540781673], +[-0.1610425699448, 0.07153014990661], +[-0.1559935700109, 0.07169898279069], +[-0.1509461231676, 0.07186195540639], +[-0.1459001809228, 0.07201911529105], +[-0.1408556946526, 0.07217050856781], +[-0.1358126156011, 0.07231617993162], +[-0.130770894881, 0.07245617263594], +[-0.1257304834749, 0.07259052847959], +[-0.1206913322362, 0.07271928779411], +[-0.1156533918911, 0.07284248943146], +[-0.1106166130405, 0.07296017075222], +[-0.1055809461628, 0.07307236761409], +[-0.1005463416162, 0.07317911436091], +[-0.09551274964233, 0.07328044381201], +[-0.09048012036911, 0.07337638725208], +[-0.08544840381492, 0.07346697442145], +[-0.08041754989247, 0.07355223350677], +[-0.07538750841306, 0.0736321911322], +[-0.07035822909122, 0.07370687235106], +[-0.06532966154947, 0.07377630063792], +[-0.06030175532337, 0.07384049788116], +[-0.05527445986683, 0.07389948437607], +[-0.05024772455755, 0.07395327881832], +[-0.04522149870269, 0.07400189829809], +[-0.04019573154474, 0.07404535829451], +[-0.03517037226751, 0.07408367267076], +[-0.03014537000226, 0.0741168536696], +[-0.02512067383403, 0.07414491190943], +[-0.02009623280798, 0.07416785638087], +[-0.01507199593594, 0.07418569444382], +[-0.01004791220292, 0.07419843182516], +[-0.005023930573798, 0.07420607261682], +[-2.866202208122e-15, 0.07420861927449], +[0.005023930573798, 0.07420607261682], +[0.01004791220292, 0.07419843182516], +[0.01507199593594, 0.07418569444382], +[0.02009623280798, 0.07416785638087], +[0.02512067383403, 0.07414491190943], +[0.03014537000226, 0.0741168536696], +[0.03517037226751, 0.07408367267076], +[0.04019573154474, 0.07404535829451], +[0.04522149870269, 0.07400189829809], +[0.05024772455755, 0.07395327881833], +[0.05527445986683, 0.07389948437607], +[0.06030175532337, 0.07384049788116], +[0.06532966154947, 0.07377630063792], +[0.07035822909122, 0.07370687235106], +[0.07538750841306, 0.0736321911322], +[0.08041754989247, 0.07355223350677], +[0.08544840381492, 0.07346697442145], +[0.09048012036911, 0.07337638725208], +[0.09551274964233, 0.07328044381201], +[0.1005463416162, 0.07317911436091], +[0.1055809461628, 0.07307236761409], +[0.1106166130405, 0.07296017075222], +[0.1156533918911, 0.07284248943146], +[0.1206913322362, 0.07271928779411], +[0.1257304834749, 0.07259052847959], +[0.130770894881, 0.07245617263594], +[0.1358126156011, 0.07231617993161], +[0.1408556946526, 0.0721705085678], +[0.1459001809228, 0.07201911529105], +[0.1509461231676, 0.07186195540639], +[0.1559935700109, 0.07169898279069], +[0.1610425699448, 0.07153014990661], +[0.1660931713292, 0.07135540781673], +[0.171145422393, 0.07117470619821], +[0.1761993712351, 0.07098799335774], +[0.1812550658256, 0.0707952162469], +[0.1863125540079, 0.0705963204779], +[0.1913718835014, 0.07039125033966], +[0.1964331019037, 0.07017994881432], +[0.2014962566944, 0.06996235759404], +[0.2065613952386, 0.06973841709829], +[0.2116285647912, 0.06950806649143], +[0.2166978125014, 0.06927124370074], +[0.2217691854177, 0.06902788543477], +[0.2268427304938, 0.06877792720221], +[0.2319184945942, 0.06852130333103], +[0.236996524501, 0.06825794698815], +[0.2420768669203, 0.0679877901995], +[0.24715956849, 0.06771076387048], +[0.252244675787, 0.06742679780695], +[0.2573322353359, 0.06713582073665], +[0.2624222936172, 0.0668377603311], +[0.2675148970762, 0.06653254322804], +[0.2726100921328, 0.06622009505433], +[0.2777079251904, 0.06590034044944], +[0.2828084426466, 0.0655732030895], +[0.2879116909035, 0.06523860571192], +[0.2930177163778, 0.06489647014061], +[0.2981265655126, 0.06454671731184], +[0.3032382847879, 0.0641892673008], +[0.3083529207325, 0.06382403934872], +[0.3134705199352, 0.06345095189087], +[0.3185911290573, 0.06306992258514], +[0.3237147948438, 0.06268086834152], +[0.3288415641359, 0.06228370535225], +[0.3339714838832, 0.0618783491229], +[0.3391046011554, 0.06146471450424], +[0.3442409631548, 0.06104271572504], +[0.3493806172281, 0.06061226642573], +[0.3545236108786, 0.06017327969307], +[0.3596699917775, 0.05972566809574], +[0.3648198077758, 0.05926934372093], +[0.3699731069154, 0.05880421821203], +[0.3751299374401, 0.05833020280733], +[0.3802903478058, 0.05784720837971], +[0.3854543866907, 0.05735514547764], +[0.3906221030048, 0.05685392436712], +[-0.387832316593, 0.06168597617452], +[-0.3826652028495, 0.06218019511801], +[-0.377501883838, 0.06266534196773], +[-0.3723423099188, 0.0631415053212], +[-0.3671864316235, 0.06360877351919], +[-0.3620341996476, 0.06406723460377], +[-0.3568855648412, 0.06451697627733], +[-0.3517404782002, 0.06495808586272], +[-0.3465988908568, 0.06539065026438], +[-0.3414607540697, 0.06581475593047], +[-0.3363260192136, 0.066230488816], +[-0.3311946377691, 0.06663793434683], +[-0.3260665613125, 0.06703717738476], +[-0.3209417415044, 0.06742830219329], +[-0.3158201300797, 0.06781139240445], +[-0.3107016788364, 0.06818653098635], +[-0.3055863396251, 0.06855380021161], +[-0.3004740643381, 0.06891328162654], +[-0.2953648048988, 0.06926505602109], +[-0.2902585132515, 0.06960920339954], +[-0.2851551413508, 0.06994580295188], +[-0.2800546411514, 0.07027493302592], +[-0.2749569645983, 0.07059667109997], +[-0.2698620636172, 0.07091109375624], +[-0.2647698901047, 0.07121827665482], +[-0.2596803959196, 0.07151829450822], +[-0.2545935328736, 0.07181122105647], +[-0.2495092527231, 0.07209712904307], +[-0.244427507161, 0.07237609019062], +[-0.2393482478086, 0.07264817517813], +[-0.2342714262085, 0.07291345361794], +[-0.2291969938173, 0.07317199403348], +[-0.2241249019988, 0.07342386383744], +[-0.2190551020181, 0.07366912931033], +[-0.2139875450355, 0.07390785557963], +[-0.2089221821009, 0.0741401065992], +[-0.203858964149, 0.07436594512922], +[-0.1987978419947, 0.07458543271654], +[-0.1937387663286, 0.07479862967538], +[-0.1886816877137, 0.07500559506848], +[-0.1836265565816, 0.07520638668863], +[-0.1785733232301, 0.07540106104064], +[-0.1735219378201, 0.07558967332357], +[-0.1684723503744, 0.07577227741358], +[-0.1634245107752, 0.07594892584691], +[-0.1583783687635, 0.07611966980346], +[-0.1533338739383, 0.07628455909061], +[-0.1482909757558, 0.0764436421276], +[-0.1432496235298, 0.07659696593011], +[-0.1382097664322, 0.07674457609541], +[-0.1331713534935, 0.07688651678781], +[-0.1281343336042, 0.07702283072463], +[-0.1230986555166, 0.07715355916244], +[-0.1180642678462, 0.07727874188381], +[-0.1130311190745, 0.07739841718453], +[-0.1079991575517, 0.07751262186117], +[-0.102968331499, 0.07762139119912], +[-0.09793858901295, 0.07772475896113], +[-0.09290987806821, 0.07782275737619], +[-0.08788214652188, 0.07791541712901], +[-0.0828553421177, 0.07800276734987], +[-0.07782941249052, 0.07808483560498], +[-0.07280430517103, 0.07816164788736], +[-0.06777996759085, 0.07823322860816], +[-0.06275634708772, 0.0782996005885], +[-0.05773339091102, 0.07836078505186], +[-0.05271104622748, 0.0784168016169], +[-0.047689260127, 0.07846766829091], +[-0.04266797962875, 0.07851340146364], +[-0.03764715168743, 0.07855401590186], +[-0.03262672319962, 0.07858952474425], +[-0.0276066410103, 0.07861993949699], +[-0.02258685191948, 0.07864527002983], +[-0.01756730268895, 0.07866552457273], +[-0.01254794004912, 0.07868070971301], +[-0.007528710705911, 0.07869083039317], +[-0.002509561347692, 0.07869588990913], +[0.002509561347691, 0.07869588990913], +[0.007528710705911, 0.07869083039317], +[0.01254794004912, 0.07868070971301], +[0.01756730268895, 0.07866552457273], +[0.02258685191948, 0.07864527002983], +[0.0276066410103, 0.07861993949699], +[0.03262672319962, 0.07858952474424], +[0.03764715168743, 0.07855401590186], +[0.04266797962875, 0.07851340146364], +[0.047689260127, 0.07846766829091], +[0.05271104622748, 0.0784168016169], +[0.05773339091103, 0.07836078505186], +[0.06275634708772, 0.0782996005885], +[0.06777996759084, 0.07823322860816], +[0.07280430517103, 0.07816164788736], +[0.07782941249052, 0.07808483560498], +[0.0828553421177, 0.07800276734987], +[0.08788214652188, 0.07791541712901], +[0.09290987806821, 0.07782275737619], +[0.09793858901296, 0.07772475896113], +[0.102968331499, 0.07762139119912], +[0.1079991575517, 0.07751262186117], +[0.1130311190745, 0.07739841718453], +[0.1180642678462, 0.07727874188381], +[0.1230986555166, 0.07715355916244], +[0.1281343336042, 0.07702283072463], +[0.1331713534935, 0.07688651678781], +[0.1382097664322, 0.0767445760954], +[0.1432496235298, 0.07659696593011], +[0.1482909757558, 0.0764436421276], +[0.1533338739383, 0.07628455909062], +[0.1583783687635, 0.07611966980346], +[0.1634245107752, 0.07594892584691], +[0.1684723503744, 0.07577227741358], +[0.1735219378201, 0.07558967332357], +[0.1785733232301, 0.07540106104065], +[0.1836265565816, 0.07520638668863], +[0.1886816877137, 0.07500559506848], +[0.1937387663286, 0.07479862967538], +[0.1987978419947, 0.07458543271654], +[0.203858964149, 0.07436594512922], +[0.2089221821009, 0.0741401065992], +[0.2139875450355, 0.07390785557963], +[0.2190551020181, 0.07366912931033], +[0.2241249019988, 0.07342386383744], +[0.2291969938173, 0.07317199403348], +[0.2342714262085, 0.07291345361794], +[0.2393482478086, 0.07264817517813], +[0.244427507161, 0.07237609019062], +[0.2495092527231, 0.07209712904307], +[0.2545935328737, 0.07181122105641], +[0.2596803959196, 0.07151829450822], +[0.2647698901047, 0.07121827665482], +[0.2698620636172, 0.07091109375624], +[0.2749569645983, 0.07059667109996], +[0.2800546411514, 0.07027493302592], +[0.2851551413508, 0.06994580295188], +[0.2902585132515, 0.06960920339954], +[0.2953648048988, 0.06926505602109], +[0.3004740643381, 0.06891328162654], +[0.3055863396251, 0.06855380021161], +[0.3107016788364, 0.06818653098635], +[0.3158201300797, 0.06781139240445], +[0.3209417415044, 0.06742830219329], +[0.3260665613125, 0.06703717738476], +[0.3311946377691, 0.06663793434685], +[0.3363260192136, 0.066230488816], +[0.3414607540697, 0.06581475593047], +[0.3465988908568, 0.06539065026438], +[0.3517404782002, 0.06495808586272], +[0.3568855648412, 0.06451697627733], +[0.3620341996476, 0.06406723460377], +[0.3671864316235, 0.06360877351919], +[0.3723423099188, 0.0631415053212], +[0.377501883838, 0.06266534196773], +[0.3826652028495, 0.06218019511801], +[0.387832316593, 0.06168597617452], +[-0.3850402389003, 0.06652199659704], +[-0.3798739002105, 0.06700916279399], +[-0.3747114720012, 0.06748734287807], +[-0.3695529038552, 0.0679566243724], +[-0.3643981454687, 0.06841709456824], +[-0.3592471466452, 0.06886884048289], +[-0.3540998572872, 0.06931194881871], +[-0.3489562273891, 0.06974650592308], +[-0.3438162070285, 0.0701725977493], +[-0.3386797463581, 0.0705903098185], +[-0.3335467955964, 0.07099972718243], +[-0.3284173050194, 0.07140093438714], +[-0.3232912249506, 0.07179401543759], +[-0.3181685057522, 0.07217905376304], +[-0.3130490978157, 0.07255613218335], +[-0.3079329515524, 0.07292533287599], +[-0.3028200173835, 0.07328673734389], +[-0.2977102457317, 0.07364042638404], +[-0.2926035870109, 0.07398648005678], +[-0.2874999916176, 0.07432497765581], +[-0.2823994099215, 0.0746559976789], +[-0.2773017922567, 0.0749796177992], +[-0.272207088913, 0.07529591483727], +[-0.2671152501276, 0.07560496473364], +[-0.2620262260762, 0.07590684252198], +[-0.256939966866, 0.07620162230288], +[-0.2518564225269, 0.07648937721814], +[-0.2467755430051, 0.07677017942564], +[-0.2416972781551, 0.07704410007463], +[-0.2366215777339, 0.07731120928167], +[-0.2315483913937, 0.07757157610694], +[-0.2264776686764, 0.07782526853105], +[-0.2214093590078, 0.07807235343236], +[-0.2163434116923, 0.07831289656471], +[-0.2112797759079, 0.07854696253558], +[-0.2062184007017, 0.07877461478475], +[-0.2011592349859, 0.0789959155633], +[-0.1961022275341, 0.07921092591312], +[-0.1910473269776, 0.07941970564675], +[-0.185994481803, 0.07962231332768], +[-0.1809436403496, 0.07981880625108], +[-0.1758947508068, 0.08000924042488], +[-0.1708477612133, 0.08019367055134], +[-0.165802619455, 0.08037215000883], +[-0.1607592732646, 0.08054473083436], +[-0.155717670221, 0.08071146370615], +[-0.1506777577492, 0.08087239792689], +[-0.1456394831209, 0.08102758140723], +[-0.1406027934546, 0.08117706064982], +[-0.1355676357174, 0.0813208807337], +[-0.130533956726, 0.08145908529914], +[-0.1255017031486, 0.08159171653289], +[-0.1204708215074, 0.08171881515396], +[-0.1154412581806, 0.08184042039972], +[-0.110412959406, 0.08195657001257], +[-0.1053858712834, 0.08206730022701], +[-0.1003599397787, 0.08217264575717], +[-0.09533511072783, 0.08227263978491], +[-0.0903113298404, 0.08236731394827], +[-0.08528854270454, 0.08245669833056], +[-0.08026669479149, 0.08254082144983], +[-0.07524573146058, 0.08261971024894], +[-0.0702255979645, 0.08269339008608], +[-0.06520623945476, 0.08276188472588], +[-0.06018760098738, 0.08282521633102], +[-0.05516962752881, 0.08288340545441], +[-0.05015226396205, 0.08293647103183], +[-0.04513545509293, 0.08298443037528], +[-0.04011914565663, 0.08302729916677], +[-0.03510328032422, 0.08306509145271], +[-0.03008780370947, 0.0830978196389], +[-0.02507266037576, 0.08312549448606], +[-0.02005779484301, 0.08314812510599], +[-0.01504315159484, 0.08316571895829], +[-0.01002867508571, 0.08317828184764], +[-0.005014309748132, 0.08318581792175], +[-5.095470592217e-16, 0.08318832966984], +[0.005014309748132, 0.08318581792175], +[0.01002867508571, 0.08317828184764], +[0.01504315159484, 0.08316571895829], +[0.02005779484301, 0.08314812510599], +[0.02507266037576, 0.08312549448606], +[0.03008780370947, 0.0830978196389], +[0.03510328032422, 0.08306509145271], +[0.04011914565663, 0.08302729916677], +[0.04513545509294, 0.08298443037528], +[0.05015226396205, 0.08293647103183], +[0.05516962752881, 0.08288340545441], +[0.06018760098738, 0.08282521633103], +[0.06520623945476, 0.08276188472588], +[0.0702255979645, 0.08269339008608], +[0.07524573146058, 0.08261971024894], +[0.08026669479149, 0.08254082144983], +[0.08528854270454, 0.08245669833056], +[0.0903113298404, 0.08236731394827], +[0.09533511072785, 0.0822726397849], +[0.1003599397787, 0.08217264575717], +[0.1053858712834, 0.08206730022701], +[0.110412959406, 0.08195657001257], +[0.1154412581806, 0.08184042039972], +[0.1204708215074, 0.08171881515396], +[0.1255017031486, 0.08159171653289], +[0.130533956726, 0.08145908529914], +[0.1355676357174, 0.0813208807337], +[0.1406027934546, 0.08117706064982], +[0.1456394831209, 0.08102758140723], +[0.1506777577492, 0.08087239792688], +[0.155717670221, 0.08071146370615], +[0.1607592732646, 0.08054473083436], +[0.165802619455, 0.08037215000883], +[0.1708477612133, 0.08019367055134], +[0.1758947508069, 0.08000924042487], +[0.1809436403496, 0.07981880625109], +[0.185994481803, 0.07962231332768], +[0.1910473269776, 0.07941970564675], +[0.1961022275341, 0.07921092591312], +[0.2011592349859, 0.0789959155633], +[0.2062184007017, 0.07877461478475], +[0.2112797759079, 0.07854696253558], +[0.2163434116923, 0.07831289656471], +[0.2214093590078, 0.07807235343236], +[0.2264776686764, 0.07782526853105], +[0.2315483913937, 0.07757157610694], +[0.2366215777339, 0.07731120928167], +[0.2416972781551, 0.07704410007463], +[0.2467755430051, 0.07677017942563], +[0.2518564225269, 0.07648937721814], +[0.256939966866, 0.07620162230288], +[0.2620262260762, 0.07590684252198], +[0.2671152501276, 0.07560496473364], +[0.272207088913, 0.07529591483727], +[0.2773017922567, 0.0749796177992], +[0.2823994099215, 0.0746559976789], +[0.2874999916176, 0.07432497765581], +[0.2926035870109, 0.07398648005678], +[0.2977102457317, 0.07364042638404], +[0.3028200173835, 0.07328673734389], +[0.3079329515524, 0.07292533287599], +[0.3130490978157, 0.07255613218335], +[0.3181685057522, 0.07217905376304], +[0.3232912249506, 0.07179401543759], +[0.3284173050194, 0.07140093438714], +[0.3335467955964, 0.07099972718243], +[0.3386797463581, 0.0705903098185], +[0.3438162070285, 0.0701725977493], +[0.3489562273891, 0.06974650592308], +[0.3540998572872, 0.06931194881871], +[0.3592471466452, 0.06886884048289], +[0.3643981454687, 0.06841709456824], +[0.3695529038552, 0.0679566243724], +[0.3747114720012, 0.06748734287807], +[0.3798739002105, 0.06700916279399], +[0.3850402389003, 0.06652199659704], +[-0.382245965047, 0.07136182088126], +[-0.3770805723972, 0.07184188507251], +[-0.3719192044281, 0.07231304903934], +[-0.3667618098989, 0.07277539929162], +[-0.3616083376263, 0.07322902213117], +[-0.3564587364789, 0.07367400360995], +[-0.3513129553716, 0.07411042948855], +[-0.3461709432581, 0.07453838519618], +[-0.3410326491248, 0.07495795579126], +[-0.3358980219833, 0.07536922592306], +[-0.3307670108625, 0.07577227979414], +[-0.3256395648016, 0.07616720112365], +[-0.3205156328415, 0.0765540731115], +[-0.3153951640173, 0.07693297840328], +[-0.3102781073498, 0.07730399905603], +[-0.3051644118377, 0.07766721650476], +[-0.3000540264491, 0.07802271152962], +[-0.2949469001135, 0.07837056422394], +[-0.2898429817137, 0.07871085396286], +[-0.284742220078, 0.07904365937265], +[-0.2796445639719, 0.07936905830069], +[-0.2745499620907, 0.07968712778611], +[-0.2694583630522, 0.07999794403099], +[-0.2643697153888, 0.08030158237218], +[-0.2592839675406, 0.08059811725368], +[-0.2542010678488, 0.08088762219961], +[-0.2491209645487, 0.08117016978765], +[-0.2440436057637, 0.08144583162307], +[-0.238968939499, 0.08171467831326], +[-0.2338969136361, 0.08197677944268], +[-0.2288274759274, 0.0822322035484], +[-0.2237605739909, 0.08248101809606], +[-0.2186961553057, 0.08272328945624], +[-0.2136341672077, 0.08295908288139], +[-0.2085745568856, 0.08318846248312], +[-0.203517271377, 0.08341149120997], +[-0.1984622575655, 0.08362823082556], +[-0.1934094621778, 0.08383874188727], +[-0.1883588317812, 0.08404308372523], +[-0.1833103127813, 0.08424131442176], +[-0.1782638514206, 0.08443349079133], +[-0.173219393777, 0.0846196683608], +[-0.1681768857632, 0.08479990135013], +[-0.1631362731257, 0.08497424265359], +[-0.1580975014451, 0.08514274382127], +[-0.1530605161361, 0.08530545504109], +[-0.1480252624481, 0.08546242512126], +[-0.1429916854663, 0.08561370147309], +[-0.1379597301132, 0.08575933009434], +[-0.1329293411501, 0.08589935555295], +[-0.1279004631792, 0.0860338209713], +[-0.1228730406462, 0.08616276801078], +[-0.1178470178432, 0.08628623685702], +[-0.1128223389114, 0.08640426620546], +[-0.1077989478449, 0.08651689324748], +[-0.1027767884944, 0.08662415365694], +[-0.09775580457121, 0.08672608157733], +[-0.0927359396518, 0.08682270960934], +[-0.08771713718228, 0.08691406879899], +[-0.08269934048339, 0.08700018862628], +[-0.0776824927558, 0.08708109699438], +[-0.07266653708549, 0.08715682021937], +[-0.06765141644949, 0.08722738302047], +[-0.0626370737218, 0.08729280851099], +[-0.05762345167953, 0.08735311818964], +[-0.05261049300928, 0.08740833193258], +[-0.04759814031365, 0.087458467986], +[-0.04258633611797, 0.08750354295926], +[-0.03757502287714, 0.08754357181872], +[-0.03256414298271, 0.08757856788203], +[-0.02755363876995, 0.08760854281319], +[-0.02254345252516, 0.08763350661809], +[-0.01753352649305, 0.0876534676408], +[-0.01252380288414, 0.08766843256036], +[-0.007514223882304, 0.08767840638824], +[-0.002504731652356, 0.08768339246651], +[0.002504731652356, 0.08768339246651], +[0.007514223882304, 0.08767840638824], +[0.01252380288414, 0.08766843256035], +[0.01753352649305, 0.0876534676408], +[0.02254345252516, 0.08763350661809], +[0.02755363876995, 0.08760854281319], +[0.03256414298271, 0.08757856788203], +[0.03757502287714, 0.08754357181872], +[0.04258633611797, 0.08750354295926], +[0.04759814031365, 0.08745846798599], +[0.05261049300928, 0.08740833193258], +[0.05762345167953, 0.08735311818964], +[0.0626370737218, 0.08729280851099], +[0.06765141644949, 0.08722738302048], +[0.07266653708549, 0.08715682021937], +[0.0776824927558, 0.08708109699438], +[0.08269934048339, 0.08700018862628], +[0.08771713718226, 0.08691406879899], +[0.0927359396518, 0.08682270960934], +[0.0977558045712, 0.08672608157733], +[0.1027767884944, 0.08662415365694], +[0.1077989478449, 0.08651689324748], +[0.1128223389114, 0.08640426620546], +[0.1178470178432, 0.08628623685702], +[0.1228730406462, 0.08616276801078], +[0.1279004631792, 0.0860338209713], +[0.1329293411501, 0.08589935555295], +[0.1379597301132, 0.08575933009434], +[0.1429916854663, 0.08561370147309], +[0.1480252624481, 0.08546242512126], +[0.1530605161361, 0.08530545504109], +[0.1580975014451, 0.08514274382127], +[0.1631362731257, 0.08497424265359], +[0.1681768857632, 0.08479990135013], +[0.173219393777, 0.0846196683608], +[0.1782638514206, 0.08443349079133], +[0.1833103127813, 0.08424131442176], +[0.1883588317812, 0.08404308372523], +[0.1934094621778, 0.08383874188728], +[0.1984622575655, 0.08362823082556], +[0.203517271377, 0.08341149120997], +[0.2085745568856, 0.08318846248312], +[0.2136341672077, 0.08295908288139], +[0.2186961553057, 0.08272328945624], +[0.2237605739909, 0.08248101809606], +[0.2288274759274, 0.0822322035484], +[0.2338969136361, 0.08197677944268], +[0.238968939499, 0.08171467831326], +[0.2440436057637, 0.08144583162307], +[0.2491209645487, 0.08117016978765], +[0.2542010678488, 0.08088762219961], +[0.2592839675406, 0.08059811725368], +[0.2643697153888, 0.08030158237218], +[0.2694583630522, 0.07999794403099], +[0.2745499620907, 0.07968712778611], +[0.2796445639719, 0.07936905830069], +[0.284742220078, 0.07904365937265], +[0.2898429817137, 0.07871085396286], +[0.2949469001135, 0.07837056422394], +[0.3000540264491, 0.07802271152962], +[0.3051644118377, 0.07766721650476], +[0.3102781073498, 0.07730399905603], +[0.3153951640173, 0.07693297840328], +[0.3205156328415, 0.0765540731115], +[0.3256395648016, 0.07616720112365], +[0.3307670108625, 0.07577227979414], +[0.3358980219833, 0.07536922592306], +[0.3410326491248, 0.07495795579126], +[0.3461709432581, 0.07453838519618], +[0.3513129553716, 0.07411042948855], +[0.3564587364789, 0.07367400360995], +[0.3616083376263, 0.07322902213117], +[0.3667618098989, 0.07277539929165], +[0.3719192044281, 0.07231304903934], +[0.3770805723972, 0.07184188507251], +[0.382245965047, 0.07136182088126], +[-0.3794495897107, 0.07620528504065], +[-0.3742853126323, 0.07667819928207], +[-0.3691251728927, 0.07714229913588], +[-0.3639691183821, 0.07759767015878], +[-0.3588170969944, 0.0780443977226], +[-0.3536690566222, 0.07848256697207], +[-0.3485249451525, 0.07891226278347], +[-0.3433847104611, 0.07933356972418], +[-0.3382483004068, 0.07974657201312], +[-0.3331156628256, 0.08015135348195], +[-0.3279867455241, 0.08054799753721], +[-0.3228614962735, 0.08093658712321], +[-0.3177398628026, 0.0813172046857], +[-0.3126217927908, 0.08168993213636], +[-0.307507233862, 0.08205485081799], +[-0.3023961335767, 0.08241204147043], +[-0.2972884394257, 0.08276158419723], +[-0.292184098823, 0.08310355843295], +[-0.2870830590988, 0.08343804291121], +[-0.2819852674927, 0.08376511563323], +[-0.2768906711472, 0.08408485383722], +[-0.2717992171009, 0.08439733396813], +[-0.2667108522823, 0.08470263164822], +[-0.2616255235034, 0.08500082164802], +[-0.2565431774536, 0.08529197785796], +[-0.2514637606942, 0.0855761732605], +[-0.2463872196528, 0.08585347990276], +[-0.2413135006178, 0.08612396886974], +[-0.2362425497334, 0.08638771025792], +[-0.2311743129953, 0.08664477314949], +[-0.2261087362457, 0.08689522558693], +[-0.2210457651696, 0.08713913454814], +[-0.215985345291, 0.08737656592198], +[-0.2109274219693, 0.08760758448434], +[-0.2058719403963, 0.08783225387443], +[-0.2008188455936, 0.08805063657201], +[-0.1957680824099, 0.08826279387437], +[-0.1907195955193, 0.08846878587435], +[-0.1856733294195, 0.08866867143841], +[-0.1806292284306, 0.08886250818536], +[-0.1755872366942, 0.08905035246538], +[-0.1705472981726, 0.08923225933956], +[-0.1655093566489, 0.0894082825598], +[-0.1604733557273, 0.08957847454924], +[-0.1554392388333, 0.08974288638304], +[-0.150406949215, 0.08990156776967], +[-0.1453764299443, 0.09005456703266], +[-0.1403476239182, 0.0902019310927], +[-0.1353204738615, 0.09034370545037], +[-0.1302949223287, 0.09047993416922], +[-0.1252709117068, 0.09061065985938], +[-0.1202483842182, 0.09073592366157], +[-0.1152272819246, 0.09085576523181], +[-0.11020754673, 0.09097022272639], +[-0.1051891203854, 0.09107933278752], +[-0.1001719444926, 0.09118313052944], +[-0.09515596050905, 0.09128164952506], +[-0.09014110975273, 0.09137492179317], +[-0.08512733340736, 0.09146297778616], +[-0.08011457252783, 0.09154584637837], +[-0.07510276804583, 0.0916235548549], +[-0.07009186077591, 0.09169612890112], +[-0.06508179142158, 0.09176359259268], +[-0.06007250058172, 0.09182596838615], +[-0.05506392875719, 0.0918832771103], +[-0.0500560163576, 0.09193553795789], +[-0.04504870370828, 0.09198276847822], +[-0.04004193105742, 0.09202498457017], +[-0.03503563858334, 0.092062200476], +[-0.03002976640192, 0.09209442877569], +[-0.02502425457412, 0.09212168038201], +[-0.02001904311365, 0.09214396453615], +[-0.01501407199467, 0.0921612888041], +[-0.01000928115964, 0.09217365907365], +[-0.005004610527186, 0.09218107955202], +[0, 0.09218355276422], +[0.005004610527186, 0.09218107955202], +[0.01000928115964, 0.09217365907365], +[0.01501407199467, 0.0921612888041], +[0.02001904311365, 0.09214396453615], +[0.02502425457412, 0.09212168038201], +[0.03002976640192, 0.09209442877569], +[0.03503563858334, 0.092062200476], +[0.04004193105742, 0.09202498457017], +[0.04504870370828, 0.09198276847822], +[0.0500560163576, 0.09193553795789], +[0.05506392875719, 0.0918832771103], +[0.06007250058172, 0.09182596838615], +[0.06508179142158, 0.09176359259268], +[0.07009186077591, 0.09169612890112], +[0.07510276804583, 0.0916235548549], +[0.08011457252783, 0.09154584637837], +[0.08512733340737, 0.09146297778616], +[0.09014110975273, 0.09137492179317], +[0.09515596050905, 0.09128164952506], +[0.1001719444926, 0.09118313052944], +[0.1051891203854, 0.09107933278752], +[0.11020754673, 0.09097022272639], +[0.1152272819246, 0.09085576523181], +[0.1202483842182, 0.09073592366157], +[0.1252709117068, 0.09061065985938], +[0.1302949223287, 0.09047993416924], +[0.1353204738615, 0.09034370545037], +[0.1403476239182, 0.0902019310927], +[0.1453764299443, 0.09005456703265], +[0.150406949215, 0.08990156776967], +[0.1554392388333, 0.08974288638304], +[0.1604733557273, 0.08957847454924], +[0.1655093566489, 0.0894082825598], +[0.1705472981726, 0.08923225933956], +[0.1755872366942, 0.08905035246538], +[0.1806292284306, 0.08886250818536], +[0.1856733294195, 0.08866867143841], +[0.1907195955193, 0.08846878587435], +[0.1957680824099, 0.08826279387437], +[0.2008188455936, 0.08805063657201], +[0.2058719403963, 0.08783225387443], +[0.2109274219693, 0.0876075844843], +[0.215985345291, 0.08737656592198], +[0.2210457651696, 0.08713913454814], +[0.2261087362457, 0.08689522558693], +[0.2311743129953, 0.08664477314949], +[0.2362425497334, 0.08638771025792], +[0.2413135006178, 0.08612396886974], +[0.2463872196528, 0.08585347990276], +[0.2514637606942, 0.0855761732605], +[0.2565431774536, 0.08529197785796], +[0.2616255235034, 0.08500082164802], +[0.2667108522823, 0.08470263164822], +[0.2717992171009, 0.08439733396813], +[0.2768906711472, 0.08408485383722], +[0.2819852674927, 0.08376511563324], +[0.2870830590988, 0.08343804291121], +[0.292184098823, 0.08310355843295], +[0.2972884394257, 0.08276158419723], +[0.3023961335767, 0.08241204147043], +[0.307507233862, 0.08205485081799], +[0.3126217927908, 0.08168993213636], +[0.3177398628026, 0.0813172046857], +[0.3228614962735, 0.08093658712321], +[0.3279867455241, 0.08054799753721], +[0.3331156628256, 0.08015135348195], +[0.3382483004068, 0.07974657201312], +[0.3433847104611, 0.07933356972418], +[0.3485249451525, 0.07891226278347], +[0.3536690566222, 0.07848256697207], +[0.3588170969944, 0.0780443977226], +[0.3639691183821, 0.07759767015878], +[0.3691251728927, 0.07714229913588], +[0.3742853126323, 0.07667819928207], +[0.3794495897107, 0.07620528504065], +[-0.3766512071488, 0.08105222581688], +[-0.3714882137592, 0.08151794347422], +[-0.3663294688299, 0.08197493256945], +[-0.361174919338, 0.08242327776533], +[-0.3560245122118, 0.08286306356196], +[-0.3508781943278, 0.08329437425435], +[-0.3457359125063, 0.08371729389092], +[-0.3405976135079, 0.08413190623273], +[-0.3354632440287, 0.08453829471361], +[-0.3303327506952, 0.08493654240106], +[-0.3252060800596, 0.08532673195792], +[-0.3200831785946, 0.08570894560487], +[-0.3149639926875, 0.08608326508364], +[-0.3098484686349, 0.08644977162088], +[-0.3047365526368, 0.08680854589294], +[-0.2996281907911, 0.0871596679911], +[-0.2945233290876, 0.08750321738767], +[-0.2894219134023, 0.08783927290265], +[-0.2843238894916, 0.08816791267104], +[-0.2792292029867, 0.08848921411081], +[-0.2741377993881, 0.08880325389139], +[-0.2690496240597, 0.08911010790285], +[-0.263964622224, 0.08940985122559], +[-0.2588827389568, 0.08970255810058], +[-0.2538039191821, 0.08998830190014], +[-0.2487281076675, 0.09026715509921], +[-0.2436552490193, 0.09053918924761], +[-0.2385852876788, 0.09080447494147], +[-0.233518167918, 0.09106308179699], +[-0.2284538338357, 0.09131507842326], +[-0.2233922293541, 0.09156053239616], +[-0.2183332982159, 0.09179951023261], +[-0.213276983981, 0.09203207736525], +[-0.2082232300244, 0.09225829811765], +[-0.2031719795336, 0.09247823567987], +[-0.1981231755069, 0.09269195208455], +[-0.1930767607519, 0.09289950818342], +[-0.1880326778843, 0.0931009636242], +[-0.1829908693266, 0.09329637682804], +[-0.1779512773086, 0.09348580496732], +[-0.172913843866, 0.09366930394393], +[-0.1678785108416, 0.093846928368], +[-0.1628452198854, 0.09401873153707], +[-0.1578139124555, 0.09418476541574], +[-0.1527845298197, 0.09434508061571], +[-0.1477570130566, 0.0944997263764], +[-0.1427313030581, 0.09464875054595], +[-0.1377073405314, 0.09479219956272], +[-0.1326850660015, 0.09493011843733], +[-0.1276644198149, 0.0950625507351], +[-0.1226453421419, 0.09518953855912], +[-0.1176277729812, 0.09531112253368], +[-0.1126116521633, 0.09542734178838], +[-0.1075969193548, 0.09553823394269], +[-0.1025835140633, 0.09564383509103], +[-0.09757137564196, 0.09574417978845], +[-0.09256044329484, 0.09583930103691], +[-0.08755065608219, 0.09592923027201], +[-0.08254195292625, 0.09601399735043], +[-0.07753427261716, 0.09609363053791], +[-0.07252755381913, 0.09616815649781], +[-0.06752173507694, 0.09623760028034], +[-0.06251675482251, 0.09630198531239], +[-0.05751255138179, 0.09636133338794], +[-0.05250906298179, 0.09641566465922], +[-0.04750622775784, 0.09646499762841], +[-0.04250398376096, 0.09650934914008], +[-0.0375022689654, 0.09654873437425], +[-0.0325010212764, 0.09658316684012], +[-0.02750017853794, 0.09661265837051], +[-0.02249967854072, 0.09663721911698], +[-0.01749945903016, 0.09665685754559], +[-0.01249945771455, 0.0966715804334], +[-0.007499612273214, 0.0966813928657], +[-0.002499860364736, 0.09668629823383], +[0.002499860364736, 0.09668629823384], +[0.007499612273214, 0.0966813928657], +[0.01249945771455, 0.0966715804334], +[0.01749945903016, 0.09665685754559], +[0.02249967854072, 0.09663721911698], +[0.02750017853794, 0.09661265837051], +[0.0325010212764, 0.09658316684012], +[0.0375022689654, 0.09654873437425], +[0.04250398376096, 0.09650934914008], +[0.04750622775784, 0.09646499762841], +[0.05250906298179, 0.09641566465922], +[0.05751255138179, 0.09636133338794], +[0.06251675482251, 0.09630198531239], +[0.06752173507694, 0.09623760028034], +[0.07252755381913, 0.09616815649781], +[0.07753427261714, 0.0960936305379], +[0.08254195292626, 0.09601399735043], +[0.08755065608219, 0.09592923027201], +[0.09256044329484, 0.09583930103691], +[0.09757137564196, 0.09574417978845], +[0.1025835140633, 0.09564383509102], +[0.1075969193548, 0.09553823394269], +[0.1126116521633, 0.09542734178838], +[0.1176277729812, 0.09531112253368], +[0.1226453421419, 0.09518953855912], +[0.1276644198148, 0.09506255073512], +[0.1326850660015, 0.09493011843733], +[0.1377073405314, 0.09479219956272], +[0.1427313030581, 0.09464875054595], +[0.1477570130566, 0.0944997263764], +[0.1527845298197, 0.09434508061571], +[0.1578139124555, 0.09418476541574], +[0.1628452198854, 0.09401873153707], +[0.1678785108416, 0.093846928368], +[0.172913843866, 0.09366930394393], +[0.1779512773086, 0.09348580496732], +[0.1829908693266, 0.09329637682804], +[0.1880326778843, 0.0931009636242], +[0.1930767607519, 0.09289950818342], +[0.1981231755069, 0.09269195208455], +[0.2031719795336, 0.09247823567987], +[0.2082232300244, 0.09225829811765], +[0.213276983981, 0.09203207736525], +[0.2183332982159, 0.09179951023261], +[0.2233922293541, 0.09156053239616], +[0.2284538338357, 0.09131507842326], +[0.233518167918, 0.09106308179699], +[0.2385852876788, 0.09080447494147], +[0.2436552490193, 0.09053918924761], +[0.2487281076674, 0.09026715509936], +[0.2538039191821, 0.08998830190014], +[0.2588827389568, 0.08970255810058], +[0.263964622224, 0.08940985122559], +[0.2690496240597, 0.08911010790285], +[0.2741377993881, 0.08880325389139], +[0.2792292029867, 0.08848921411081], +[0.2843238894916, 0.08816791267104], +[0.2894219134023, 0.08783927290265], +[0.2945233290876, 0.08750321738767], +[0.2996281907911, 0.0871596679911], +[0.3047365526368, 0.08680854589294], +[0.3098484686349, 0.08644977162088], +[0.3149639926875, 0.08608326508364], +[0.3200831785946, 0.08570894560488], +[0.3252060800596, 0.08532673195792], +[0.3303327506952, 0.08493654240106], +[0.3354632440287, 0.08453829471361], +[0.3405976135079, 0.08413190623273], +[0.3457359125063, 0.08371729389092], +[0.3508781943278, 0.08329437425435], +[0.3560245122118, 0.08286306356196], +[0.361174919338, 0.08242327776533], +[0.3663294688299, 0.08197493256945], +[0.3714882137592, 0.08151794347422], +[0.3766512071488, 0.08105222581688], +[-0.3738509112199, 0.08590248064207], +[-0.3686893682625, 0.086360956386], +[-0.3635321833549, 0.08681078942224], +[-0.3583793025189, 0.08725206357679], +[-0.3532306716751, 0.08768486253667], +[-0.3480862366443, 0.08810926980337], +[-0.3429459431424, 0.08852536865306], +[-0.3378097367785, 0.08893324209512], +[-0.3326775630511, 0.08933297283194], +[-0.3275493673446, 0.08972464321943], +[-0.3224250949253, 0.09010833522829], +[-0.317304690937, 0.09048413040598], +[-0.3121881003972, 0.09085210983949], +[-0.3070752681922, 0.09121235411869], +[-0.3019661390729, 0.09156494330046], +[-0.2968606576496, 0.09190995687338], +[-0.2917587683879, 0.09224747372321], +[-0.2866604156038, 0.09257757209898], +[-0.2815655434594, 0.09290032957896], +[-0.2764740959573, 0.09321582303928], +[-0.2713860169372, 0.09352412862034], +[-0.266301250071, 0.09382532169592], +[-0.2612197388587, 0.09411947684191], +[-0.256141426624, 0.09440666780583], +[-0.2510662565107, 0.09468696747681], +[-0.2459941714785, 0.09496044785608], +[-0.2409251142999, 0.09522718002802], +[-0.2358590275567, 0.09548723413162], +[-0.2307958536369, 0.09574067933249], +[-0.2257355347318, 0.09598758379534], +[-0.2206780128336, 0.0962280146569], +[-0.2156232297329, 0.09646203799933], +[-0.2105711270171, 0.09668971882405], +[-0.2055216460682, 0.09691112102612], +[-0.200474728062, 0.09712630736893], +[-0.1954303139664, 0.09733533945949], +[-0.1903883445411, 0.09753827772405], +[-0.1853487603373, 0.09773518138428], +[-0.180311501697, 0.09792610843378], +[-0.1752765087538, 0.09811111561515], +[-0.1702437214335, 0.09829025839749], +[-0.1652130794546, 0.09846359095433], +[-0.16018452233, 0.09863116614206], +[-0.1551579893682, 0.09879303547881], +[-0.1501334196758, 0.09894924912386], +[-0.1451107521592, 0.09909985585744], +[-0.1400899255277, 0.09924490306116], +[-0.135070878296, 0.09938443669881], +[-0.130053548788, 0.09951850129775], +[-0.1250378751398, 0.0996471399308], +[-0.1200237953041, 0.09977039419868], +[-0.1150112470545, 0.09988830421296], +[-0.1100001679894, 0.1000009085796], +[-0.1049904955375, 0.1001082443829], +[-0.0999821669627, 0.1002103471705], +[-0.09497511936943, 0.100307250938], +[-0.08996928970845, 0.1003989881157], +[-0.08496461478274, 0.1004855895541], +[-0.07996103125373, 0.1005670845115], +[-0.07495847564779, 0.1006435006416], +[-0.06995688436284, 0.1007148639818], +[-0.06495619367532, 0.1007811989422], +[-0.05995633974728, 0.100842528295], +[-0.05495725863369, 0.1008988731654], +[-0.04995888628998, 0.1009502530218], +[-0.04496115857968, 0.100996685668], +[-0.03996401128226, 0.1010381872356], +[-0.03496738010114, 0.1010747721767], +[-0.02997120067177, 0.1011064532579], +[-0.02497540856988, 0.1011332415548], +[-0.0199799393198, 0.1011551464472], +[-0.01498472840294, 0.1011721756151], +[-0.009989711266212, 0.1011843350351], +[-0.004994823330651, 0.1011916289782], +[-1.751568016075e-15, 0.1011940600077], +[0.004994823330651, 0.1011916289782], +[0.009989711266212, 0.1011843350351], +[0.01498472840294, 0.1011721756151], +[0.0199799393198, 0.1011551464472], +[0.02497540856988, 0.1011332415548], +[0.02997120067177, 0.1011064532579], +[0.03496738010114, 0.1010747721767], +[0.03996401128226, 0.1010381872356], +[0.04496115857968, 0.100996685668], +[0.04995888628998, 0.1009502530218], +[0.05495725863369, 0.1008988731654], +[0.05995633974728, 0.100842528295], +[0.06495619367532, 0.1007811989422], +[0.06995688436284, 0.1007148639818], +[0.07495847564779, 0.1006435006416], +[0.07996103125373, 0.1005670845115], +[0.08496461478273, 0.1004855895541], +[0.08996928970845, 0.1003989881157], +[0.09497511936943, 0.100307250938], +[0.0999821669627, 0.1002103471704], +[0.1049904955375, 0.1001082443829], +[0.1100001679894, 0.1000009085796], +[0.1150112470545, 0.09988830421296], +[0.1200237953041, 0.09977039419868], +[0.1250378751398, 0.0996471399308], +[0.130053548788, 0.09951850129775], +[0.135070878296, 0.09938443669881], +[0.1400899255277, 0.09924490306116], +[0.1451107521592, 0.09909985585744], +[0.1501334196758, 0.09894924912386], +[0.1551579893682, 0.09879303547881], +[0.16018452233, 0.09863116614206], +[0.1652130794546, 0.09846359095433], +[0.1702437214335, 0.09829025839749], +[0.1752765087538, 0.09811111561515], +[0.180311501697, 0.09792610843378], +[0.1853487603373, 0.09773518138428], +[0.1903883445411, 0.09753827772406], +[0.1954303139664, 0.09733533945949], +[0.200474728062, 0.09712630736893], +[0.2055216460682, 0.09691112102612], +[0.2105711270171, 0.09668971882405], +[0.2156232297329, 0.09646203799933], +[0.2206780128336, 0.0962280146569], +[0.2257355347318, 0.09598758379534], +[0.2307958536369, 0.09574067933249], +[0.2358590275567, 0.09548723413162], +[0.2409251142999, 0.09522718002802], +[0.2459941714785, 0.09496044785608], +[0.2510662565107, 0.09468696747681], +[0.256141426624, 0.09440666780583], +[0.2612197388587, 0.09411947684191], +[0.266301250071, 0.09382532169592], +[0.2713860169372, 0.09352412862034], +[0.2764740959573, 0.09321582303928], +[0.2815655434594, 0.09290032957896], +[0.2866604156039, 0.09257757209889], +[0.2917587683879, 0.09224747372321], +[0.2968606576496, 0.09190995687338], +[0.3019661390729, 0.09156494330046], +[0.3070752681922, 0.09121235411869], +[0.3121881003972, 0.09085210983949], +[0.317304690937, 0.09048413040598], +[0.3224250949253, 0.09010833522829], +[0.3275493673446, 0.08972464321943], +[0.3326775630511, 0.08933297283194], +[0.3378097367785, 0.08893324209512], +[0.3429459431424, 0.08852536865306], +[0.3480862366443, 0.08810926980337], +[0.3532306716751, 0.08768486253667], +[0.3583793025189, 0.08725206357679], +[0.3635321833553, 0.08681078942169], +[0.3686893682625, 0.086360956386], +[0.3738509112199, 0.08590248064207], +[-0.3710487954051, 0.09075588760191], +[-0.3658888682879, 0.09120707740314], +[-0.3607334072837, 0.09164971041832], +[-0.3555823574148, 0.09208386969654], +[-0.3504356635559, 0.09250963816605], +[-0.3452932704322, 0.09292709859139], +[-0.3401551226187, 0.09333633353126], +[-0.3350211645372, 0.09373742529724], +[-0.3298913404551, 0.09413045591312], +[-0.324765594482, 0.09451550707504], +[-0.3196438705672, 0.09489266011227], +[-0.3145261124969, 0.0952619959488], +[-0.3094122638902, 0.09562359506542], +[-0.3043022681968, 0.09597753746265], +[-0.2991960686926, 0.09632390262424], +[-0.2940936084767, 0.09666276948124], +[-0.2889948304676, 0.09699421637681], +[-0.2838996773995, 0.09731832103157], +[-0.278808091819, 0.0976351605095], +[-0.2737200160813, 0.09794481118446], +[-0.268635392347, 0.09824734870733], +[-0.2635541625781, 0.09854284797352], +[-0.2584762685357, 0.09883138309124], +[-0.2534016517758, 0.09911302735009], +[-0.2483302536473, 0.09938785319029], +[-0.2432620152885, 0.09965593217238], +[-0.2381968776248, 0.09991733494738], +[-0.233134781366, 0.1001721312275], +[-0.2280756670049, 0.1004203897573], +[-0.2230194748143, 0.1006621782852], +[-0.2179661448462, 0.1008975635357], +[-0.2129156169298, 0.1011266111819], +[-0.2078678306708, 0.1013493858186], +[-0.2028227254501, 0.1015659509356], +[-0.1977802404236, 0.1017763688916], +[-0.1927403145219, 0.101980700889], +[-0.18770288645, 0.1021790069481], +[-0.182667894688, 0.1023713458831], +[-0.1776352774916, 0.1025577752774], +[-0.1726049728933, 0.1027383514599], +[-0.1675769187032, 0.102913129482], +[-0.1625510525114, 0.1030821630945], +[-0.1575273116892, 0.1032455047252], +[-0.1525056333919, 0.1034032054576], +[-0.1474859545612, 0.1035553150089], +[-0.142468211928, 0.1037018817096], +[-0.1374523420162, 0.1038429524831], +[-0.1324382811456, 0.1039785728259], +[-0.1274259654362, 0.1041087867883], +[-0.1224153308124, 0.1042336369558], +[-0.1174063130073, 0.1043531644309], +[-0.1123988475678, 0.1044674088156], +[-0.1073928698594, 0.1045764081945], +[-0.1023883150718, 0.104680199118], +[-0.09738511822457, 0.104778816587], +[-0.09238321417317, 0.1048722940376], +[-0.08738253761494, 0.1049606633263], +[-0.08238302309576, 0.1050439547165], +[-0.07738460501671, 0.1051221968649], +[-0.07238721764104, 0.1051954168091], +[-0.06739079510135, 0.1052636399556], +[-0.06239527140696, 0.1053268900689], +[-0.05740058045154, 0.1053851892604], +[-0.05240665602087, 0.105438557979], +[-0.0474134318008, 0.1054870150019], +[-0.04242084138539, 0.1055305774263], +[-0.03742881828518, 0.1055692606614], +[-0.03243729593561, 0.1056030784221], +[-0.02744620770555, 0.1056320427221], +[-0.02245548690597, 0.1056561638694], +[-0.01746506679867, 0.1056754504607], +[-0.01247488060509, 0.1056899093782], +[-0.007484861515251, 0.1056995457862], +[-0.002494942696666, 0.105704363129], +[0.002494942696666, 0.105704363129], +[0.007484861515251, 0.1056995457862], +[0.01247488060509, 0.1056899093782], +[0.01746506679867, 0.1056754504607], +[0.02245548690597, 0.1056561638694], +[0.02744620770555, 0.1056320427221], +[0.03243729593561, 0.1056030784221], +[0.03742881828518, 0.1055692606614], +[0.04242084138539, 0.1055305774263], +[0.0474134318008, 0.1054870150019], +[0.05240665602087, 0.105438557979], +[0.05740058045154, 0.1053851892604], +[0.06239527140696, 0.1053268900689], +[0.06739079510134, 0.1052636399556], +[0.07238721764104, 0.1051954168091], +[0.07738460501671, 0.1051221968649], +[0.08238302309576, 0.1050439547165], +[0.08738253761494, 0.1049606633263], +[0.09238321417317, 0.1048722940376], +[0.09738511822457, 0.104778816587], +[0.1023883150718, 0.104680199118], +[0.1073928698594, 0.1045764081945], +[0.1123988475678, 0.1044674088156], +[0.1174063130073, 0.1043531644309], +[0.1224153308124, 0.1042336369558], +[0.1274259654362, 0.1041087867883], +[0.1324382811456, 0.1039785728259], +[0.1374523420162, 0.1038429524831], +[0.142468211928, 0.1037018817096], +[0.1474859545612, 0.1035553150089], +[0.1525056333919, 0.1034032054576], +[0.1575273116892, 0.1032455047252], +[0.1625510525114, 0.1030821630945], +[0.1675769187032, 0.102913129482], +[0.1726049728933, 0.1027383514599], +[0.1776352774916, 0.1025577752774], +[0.182667894688, 0.1023713458831], +[0.18770288645, 0.1021790069481], +[0.1927403145219, 0.101980700889], +[0.1977802404236, 0.1017763688916], +[0.2028227254501, 0.1015659509356], +[0.2078678306708, 0.1013493858186], +[0.2129156169298, 0.1011266111819], +[0.2179661448462, 0.1008975635357], +[0.2230194748143, 0.1006621782852], +[0.2280756670049, 0.1004203897573], +[0.233134781366, 0.1001721312275], +[0.2381968776248, 0.09991733494738], +[0.2432620152885, 0.09965593217238], +[0.2483302536473, 0.09938785319029], +[0.2534016517758, 0.09911302735009], +[0.2584762685357, 0.09883138309124], +[0.2635541625781, 0.09854284797352], +[0.268635392347, 0.09824734870733], +[0.2737200160813, 0.09794481118446], +[0.278808091819, 0.0976351605095], +[0.2838996773995, 0.09731832103157], +[0.2889948304676, 0.09699421637681], +[0.2940936084767, 0.09666276948124], +[0.2991960686926, 0.09632390262424], +[0.3043022681968, 0.09597753746265], +[0.3094122638902, 0.09562359506542], +[0.3145261124969, 0.0952619959488], +[0.3196438705672, 0.09489266011227], +[0.324765594482, 0.09451550707504], +[0.3298913404551, 0.09413045591312], +[0.3350211645372, 0.09373742529724], +[0.3401551226187, 0.09333633353126], +[0.3452932704322, 0.09292709859139], +[0.3504356635559, 0.09250963816605], +[0.3555823574148, 0.09208386969654], +[0.3607334072837, 0.09164971041832], +[0.3658888682879, 0.09120707740314], +[0.3710487954051, 0.09075588760191], +[-0.3682449528293, 0.09561228539963], +[-0.3630868056625, 0.09605614652421], +[-0.3579332311487, 0.09649153689184], +[-0.352784173271, 0.09691853883028], +[-0.3476395758172, 0.09733723456607], +[-0.3424993823801, 0.09774770618135], +[-0.3373635363567, 0.09815003557148], +[-0.3322319809476, 0.09854430440328], +[-0.3271046591554, 0.09893059407405], +[-0.3219815137835, 0.09930898567123], +[-0.3168624874341, 0.09967955993272], +[-0.3117475225064, 0.1000423972079], +[-0.3066365611943, 0.1003975774194], +[-0.3015295454841, 0.100745180025], +[-0.2964264171524, 0.101085283981], +[-0.2913271177628, 0.1014179677054], +[-0.2862315886644, 0.1017433090421], +[-0.2811397709884, 0.1020613852256], +[-0.2760516056454, 0.1023722728463], +[-0.2709670333241, 0.1026760478158], +[-0.2658859944874, 0.102972785334], +[-0.2608084293707, 0.1032625598554], +[-0.2557342779793, 0.1035454450566], +[-0.2506634800865, 0.1038215138043], +[-0.2455959752315, 0.1040908381235], +[-0.2405317027173, 0.1043534891667], +[-0.2354706016091, 0.1046095371829], +[-0.230412610733, 0.1048590514874], +[-0.2253576686745, 0.1051021004327], +[-0.2203057137772, 0.1053387513786], +[-0.2152566841426, 0.1055690706638], +[-0.2102105176289, 0.1057931235776], +[-0.2051671518511, 0.1060109743319], +[-0.2001265241805, 0.1062226860342], +[-0.1950885717453, 0.1064283206602], +[-0.190053231431, 0.1066279390278], +[-0.1850204398811, 0.1068216007709], +[-0.1799901334983, 0.1070093643141], +[-0.1749622484459, 0.1071912868472], +[-0.1699367206492, 0.1073674243015], +[-0.1649134857981, 0.1075378313248], +[-0.1598924793488, 0.1077025612586], +[-0.1548736365268, 0.1078616661147], +[-0.1498568923299, 0.1080151965527], +[-0.1448421815313, 0.1081632018578], +[-0.1398294386829, 0.1083057299198], +[-0.13481859812, 0.1084428272115], +[-0.1298095939646, 0.1085745387689], +[-0.1248023601304, 0.1087009081711], +[-0.1197968303276, 0.1088219775207], +[-0.1147929380679, 0.1089377874258], +[-0.1097906166698, 0.1090483769814], +[-0.1047897992643, 0.1091537837523], +[-0.09979041880116, 0.1092540437557], +[-0.09479240805478, 0.1093491914458], +[-0.08979569963082, 0.1094392596975], +[-0.08480022597295, 0.1095242797919], +[-0.07980591936985, 0.1096042814021], +[-0.07481271196242, 0.1096792925793], +[-0.06982053575128, 0.1097493397406], +[-0.06482932260439, 0.1098144476563], +[-0.05983900426495, 0.1098746394388], +[-0.05484951235953, 0.1099299365318], +[-0.04986077840626, 0.1099803587004], +[-0.04487273382325, 0.1100259240223], +[-0.03988530993723, 0.1100666488788], +[-0.03489843799223, 0.1101025479475], +[-0.02991204915844, 0.1101336341955], +[-0.0249260745412, 0.1101599188733], +[-0.01994044519006, 0.1101814115094], +[-0.01495509210795, 0.1101981199061], +[-0.009969946260397, 0.1102100501354], +[-0.004984938584851, 0.1102172065367], +[-3.856634304484e-14, 0.1102195917143], +[0.004984938584851, 0.1102172065367], +[0.009969946260397, 0.1102100501354], +[0.01495509210795, 0.1101981199061], +[0.01994044519006, 0.1101814115094], +[0.0249260745412, 0.1101599188733], +[0.02991204915844, 0.1101336341955], +[0.03489843799223, 0.1101025479475], +[0.03988530993723, 0.1100666488788], +[0.04487273382325, 0.1100259240223], +[0.04986077840626, 0.1099803587004], +[0.05484951235953, 0.1099299365318], +[0.05983900426494, 0.1098746394388], +[0.06482932260438, 0.1098144476563], +[0.06982053575128, 0.1097493397406], +[0.07481271196242, 0.1096792925793], +[0.07980591936985, 0.1096042814021], +[0.08480022597295, 0.1095242797919], +[0.08979569963082, 0.1094392596975], +[0.09479240805478, 0.1093491914458], +[0.09979041880116, 0.1092540437557], +[0.1047897992643, 0.1091537837523], +[0.1097906166698, 0.1090483769814], +[0.1147929380679, 0.1089377874258], +[0.1197968303276, 0.1088219775207], +[0.1248023601304, 0.1087009081711], +[0.1298095939646, 0.1085745387689], +[0.13481859812, 0.1084428272115], +[0.1398294386829, 0.1083057299198], +[0.1448421815313, 0.1081632018578], +[0.14985689233, 0.1080151965527], +[0.1548736365268, 0.1078616661147], +[0.1598924793488, 0.1077025612586], +[0.1649134857981, 0.1075378313248], +[0.1699367206492, 0.1073674243015], +[0.1749622484459, 0.1071912868472], +[0.1799901334983, 0.1070093643141], +[0.1850204398811, 0.1068216007709], +[0.190053231431, 0.1066279390278], +[0.1950885717453, 0.1064283206602], +[0.2001265241805, 0.1062226860342], +[0.2051671518511, 0.1060109743319], +[0.2102105176289, 0.1057931235776], +[0.2152566841426, 0.1055690706638], +[0.2203057137772, 0.1053387513786], +[0.2253576686745, 0.1051021004327], +[0.230412610733, 0.1048590514874], +[0.2354706016091, 0.1046095371829], +[0.2405317027173, 0.1043534891667], +[0.2455959752315, 0.1040908381235], +[0.2506634800865, 0.1038215138043], +[0.2557342779793, 0.1035454450566], +[0.2608084293707, 0.1032625598554], +[0.2658859944874, 0.102972785334], +[0.2709670333241, 0.1026760478158], +[0.2760516056454, 0.1023722728463], +[0.2811397709883, 0.1020613852256], +[0.2862315886644, 0.1017433090421], +[0.2913271177628, 0.1014179677054], +[0.2964264171524, 0.101085283981], +[0.3015295454841, 0.100745180025], +[0.3066365611943, 0.1003975774194], +[0.3117475225064, 0.1000423972079], +[0.3168624874341, 0.09967955993272], +[0.3219815137835, 0.09930898567123], +[0.3271046591554, 0.09893059407405], +[0.3322319809476, 0.09854430440328], +[0.3373635363567, 0.09815003557148], +[0.3424993823801, 0.09774770618135], +[0.3476395758172, 0.09733723456607], +[0.352784173271, 0.09691853883028], +[0.3579332311487, 0.09649153689184], +[0.3630868056625, 0.09605614652421], +[0.3682449528293, 0.09561228539963], +[-0.365439476281, 0.1004715133207], +[-0.3602832719135, 0.1009080043254], +[-0.3551317452205, 0.1013361107481], +[-0.3499848391053, 0.1017559142513], +[-0.3448424962308, 0.1021674964148], +[-0.3397046590199, 0.1025709386927], +[-0.3345712696568, 0.1029663223703], +[-0.3294422700863, 0.1033537285221], +[-0.3243176020143, 0.1037332379703], +[-0.3191972069068, 0.1041049312438], +[-0.314081025989, 0.1044688885389], +[-0.3089690002454, 0.1048251896783], +[-0.3038610704173, 0.1051739140736], +[-0.2987571770023, 0.1055151406863], +[-0.2936572602526, 0.1058489479899], +[-0.2885612601738, 0.1061754139334], +[-0.2834691165227, 0.1064946159041], +[-0.2783807688066, 0.1068066306919], +[-0.2732961562808, 0.1071115344538], +[-0.2682152179477, 0.1074094026787], +[-0.2631378925547, 0.1077003101534], +[-0.2580641185934, 0.1079843309282], +[-0.2529938342974, 0.1082615382839], +[-0.2479269776418, 0.1085320046986], +[-0.2428634863416, 0.1087958018155], +[-0.2378032978507, 0.1090530004108], +[-0.2327463493613, 0.1093036703621], +[-0.2276925778033, 0.1095478806179], +[-0.2226419198433, 0.1097856991666], +[-0.2175943118852, 0.1100171930065], +[-0.2125496900693, 0.1102424281166], +[-0.2075079902733, 0.1104614694269], +[-0.202469148112, 0.1106743807903], +[-0.1974330989389, 0.1108812249538], +[-0.1923997778462, 0.1110820635315], +[-0.1873691196668, 0.1112769569766], +[-0.1823410589755, 0.1114659645553], +[-0.1773155300909, 0.1116491443199], +[-0.1722924670775, 0.1118265530835], +[-0.1672718037478, 0.1119982463942], +[-0.1622534736658, 0.112164278511], +[-0.1572374101488, 0.1123247023786], +[-0.152223546272, 0.1124795696044], +[-0.1472118148711, 0.1126289304347], +[-0.1422021485464, 0.1127728337324], +[-0.1371944796676, 0.1129113269548], +[-0.1321887403776, 0.1130444561315], +[-0.1271848625977, 0.1131722658442], +[-0.1221827780324, 0.1132947992056], +[-0.1171824181752, 0.1134120978401], +[-0.1121837143139, 0.113524201864], +[-0.1071865975369, 0.1136311498676], +[-0.102190998739, 0.1137329788968], +[-0.09719684862846, 0.113829724436], +[-0.09220407773328, 0.1139214203915], +[-0.08721261640857, 0.1140080990753], +[-0.08222239484367, 0.1140897911906], +[-0.07723334306969, 0.1141665258165], +[-0.07224539096731, 0.1142383303945], +[-0.06725846827467, 0.1143052307157], +[-0.06227250459561, 0.1143672509081], +[-0.057287429408, 0.1144244134254], +[-0.05230317207229, 0.1144767390359], +[-0.04731966184034, 0.1145242468128], +[-0.04233682786417, 0.1145669541249], +[-0.0373545992051, 0.1146048766283], +[-0.03237290484291, 0.1146380282586], +[-0.0273916736851, 0.1146664212244], +[-0.02241083457639, 0.1146900660012], +[-0.01743031630812, 0.1147089713266], +[-0.01245004762791, 0.1147231441954], +[-0.007469957249275, 0.114732589857], +[-0.002489973861358, 0.1147373118124], +[0.002489973861358, 0.1147373118124], +[0.007469957249274, 0.114732589857], +[0.01245004762791, 0.1147231441954], +[0.01743031630812, 0.1147089713266], +[0.02241083457639, 0.1146900660012], +[0.0273916736851, 0.1146664212244], +[0.03237290484291, 0.1146380282586], +[0.0373545992051, 0.1146048766283], +[0.04233682786417, 0.1145669541249], +[0.04731966184034, 0.1145242468128], +[0.05230317207229, 0.1144767390359], +[0.05728742940799, 0.1144244134254], +[0.0622725045956, 0.1143672509081], +[0.06725846827467, 0.1143052307157], +[0.07224539096731, 0.1142383303946], +[0.07723334306969, 0.1141665258165], +[0.08222239484367, 0.1140897911906], +[0.08721261640857, 0.1140080990753], +[0.09220407773328, 0.1139214203915], +[0.09719684862846, 0.113829724436], +[0.102190998739, 0.1137329788968], +[0.1071865975369, 0.1136311498676], +[0.1121837143139, 0.113524201864], +[0.1171824181752, 0.1134120978401], +[0.1221827780324, 0.1132947992056], +[0.1271848625977, 0.1131722658442], +[0.1321887403776, 0.1130444561315], +[0.1371944796676, 0.1129113269548], +[0.1422021485464, 0.1127728337324], +[0.1472118148711, 0.1126289304347], +[0.152223546272, 0.1124795696044], +[0.1572374101489, 0.1123247023786], +[0.1622534736658, 0.112164278511], +[0.1672718037478, 0.1119982463942], +[0.1722924670775, 0.1118265530835], +[0.1773155300909, 0.1116491443199], +[0.1823410589755, 0.1114659645553], +[0.1873691196668, 0.1112769569766], +[0.1923997778462, 0.1110820635315], +[0.1974330989389, 0.1108812249538], +[0.202469148112, 0.1106743807903], +[0.2075079902733, 0.1104614694269], +[0.2125496900693, 0.1102424281166], +[0.2175943118852, 0.1100171930065], +[0.2226419198433, 0.1097856991666], +[0.2276925778033, 0.1095478806179], +[0.2327463493613, 0.1093036703621], +[0.2378032978507, 0.1090530004108], +[0.2428634863416, 0.1087958018155], +[0.2479269776418, 0.1085320046986], +[0.2529938342974, 0.1082615382839], +[0.2580641185934, 0.1079843309282], +[0.2631378925547, 0.1077003101534], +[0.2682152179477, 0.1074094026787], +[0.2732961562808, 0.1071115344538], +[0.2783807688066, 0.1068066306919], +[0.2834691165227, 0.1064946159041], +[0.2885612601738, 0.1061754139334], +[0.2936572602526, 0.1058489479899], +[0.2987571770023, 0.1055151406863], +[0.3038610704173, 0.1051739140736], +[0.3089690002454, 0.1048251896783], +[0.314081025989, 0.1044688885389], +[0.3191972069068, 0.1041049312439], +[0.3243176020143, 0.1037332379703], +[0.3294422700863, 0.1033537285221], +[0.3345712696568, 0.1029663223703], +[0.3397046590199, 0.1025709386927], +[0.3448424962308, 0.1021674964148], +[0.3499848391053, 0.1017559142513], +[0.3551317452205, 0.1013361107481], +[0.3602832719135, 0.1009080043254], +[0.365439476281, 0.1004715133207], +[-0.3626324582327, 0.1053334111982], +[-0.3574783582878, 0.1057624919262], +[-0.352329039524, 0.1061832744314], +[-0.3471844437259, 0.1065958397662], +[-0.3420445123932, 0.1070002689184], +[-0.3369091867434, 0.1073966427676], +[-0.3317784077128, 0.1077850420417], +[-0.3266521159577, 0.1081655472743], +[-0.3215302518551, 0.1085382387634], +[-0.3164127555035, 0.1089031965293], +[-0.3112995667225, 0.1092605002746], +[-0.3061906250535, 0.1096102293438], +[-0.3010858697591, 0.1099524626838], +[-0.2959852398229, 0.1102872788048], +[-0.2908886739489, 0.1106147557426], +[-0.2857961105613, 0.1109349710199], +[-0.2807074878035, 0.1112480016098], +[-0.2756227435377, 0.1115539238985], +[-0.270541815344, 0.1118528136493], +[-0.2654646405201, 0.1121447459672], +[-0.2603911560802, 0.1124297952631], +[-0.2553212987548, 0.1127080352197], +[-0.2502550049901, 0.1129795387568], +[-0.2451922109475, 0.113244377998], +[-0.2401328525034, 0.1135026242371], +[-0.2350768652492, 0.1137543479056], +[-0.2300241844911, 0.1139996185404], +[-0.2249747452501, 0.1142385047516], +[-0.219928482263, 0.1144710741916], +[-0.2148853299823, 0.1146973935241], +[-0.2098452225773, 0.1149175283934], +[-0.2048080939349, 0.1151315433948], +[-0.1997738776611, 0.1153395020447], +[-0.1947425070822, 0.115541466752], +[-0.1897139152465, 0.1157374987893], +[-0.1846880349265, 0.1159276582649], +[-0.179664798621, 0.1161120040951], +[-0.1746441385575, 0.1162905939773], +[-0.1696259866952, 0.1164634843633], +[-0.1646102747281, 0.1166307304334], +[-0.159596934088, 0.1167923860704], +[-0.1545858959485, 0.1169485038351], +[-0.149577091229, 0.1170991349416], +[-0.1445704505986, 0.1172443292331], +[-0.139565904481, 0.1173841351589], +[-0.1345633830588, 0.1175185997517], +[-0.1295628162793, 0.1176477686047], +[-0.1245641338594, 0.1177716858509], +[-0.1195672652915, 0.1178903941414], +[-0.1145721398495, 0.1180039346254], +[-0.1095786865948, 0.1181123469304], +[-0.1045868343834, 0.1182156691433], +[-0.09959651187184, 0.1183139377916], +[-0.09460764752518, 0.1184071878262], +[-0.08962016962368, 0.1184954526042], +[-0.08463400627067, 0.1185787638727], +[-0.07964908540027, 0.1186571517531], +[-0.07466533478543, 0.1187306447265], +[-0.06968268204623, 0.1187992696197], +[-0.06470105465833, 0.1188630515919], +[-0.05972037996165, 0.118922014122], +[-0.05474058516926, 0.1189761789975], +[-0.04976159737638, 0.1190255663032], +[-0.04478334356966, 0.1190701944113], +[-0.03980575063649, 0.1191100799722], +[-0.03482874537455, 0.1191452379063], +[-0.02985225450142, 0.1191756813963], +[-0.02487620466437, 0.1192014218807], +[-0.01990052245018, 0.119222469048], +[-0.01492513439511, 0.1192388308319], +[-0.009949966994898, 0.1192505134071], +[-0.004974946714864, 0.1192575211866], +[-4.649616915398e-15, 0.1192598568187], +[0.004974946714864, 0.1192575211866], +[0.009949966994898, 0.1192505134071], +[0.01492513439511, 0.1192388308319], +[0.01990052245018, 0.119222469048], +[0.02487620466437, 0.1192014218807], +[0.02985225450142, 0.1191756813963], +[0.03482874537455, 0.1191452379063], +[0.03980575063649, 0.1191100799722], +[0.04478334356966, 0.1190701944113], +[0.04976159737638, 0.1190255663032], +[0.05474058516926, 0.1189761789975], +[0.05972037996165, 0.118922014122], +[0.06470105465833, 0.1188630515919], +[0.06968268204623, 0.1187992696197], +[0.07466533478543, 0.1187306447265], +[0.07964908540027, 0.1186571517531], +[0.08463400627067, 0.1185787638727], +[0.08962016962368, 0.1184954526042], +[0.09460764752518, 0.1184071878262], +[0.09959651187184, 0.1183139377916], +[0.1045868343834, 0.1182156691433], +[0.1095786865948, 0.1181123469304], +[0.1145721398495, 0.1180039346254], +[0.1195672652915, 0.1178903941414], +[0.1245641338594, 0.1177716858509], +[0.1295628162793, 0.1176477686047], +[0.1345633830588, 0.1175185997517], +[0.139565904481, 0.1173841351589], +[0.1445704505986, 0.1172443292331], +[0.149577091229, 0.1170991349416], +[0.1545858959485, 0.1169485038351], +[0.159596934088, 0.1167923860704], +[0.1646102747281, 0.1166307304334], +[0.1696259866952, 0.1164634843633], +[0.1746441385575, 0.1162905939773], +[0.179664798621, 0.1161120040951], +[0.1846880349265, 0.1159276582649], +[0.1897139152465, 0.1157374987893], +[0.1947425070822, 0.115541466752], +[0.1997738776611, 0.1153395020447], +[0.2048080939349, 0.1151315433948], +[0.2098452225773, 0.1149175283934], +[0.2148853299823, 0.1146973935241], +[0.219928482263, 0.1144710741916], +[0.2249747452501, 0.1142385047516], +[0.2300241844911, 0.1139996185404], +[0.2350768652492, 0.1137543479056], +[0.2401328525034, 0.1135026242371], +[0.2451922109475, 0.113244377998], +[0.2502550049901, 0.1129795387568], +[0.2553212987548, 0.1127080352197], +[0.2603911560802, 0.1124297952631], +[0.2654646405201, 0.1121447459672], +[0.270541815344, 0.1118528136493], +[0.2756227435377, 0.1115539238985], +[0.2807074878035, 0.1112480016098], +[0.2857961105613, 0.1109349710199], +[0.2908886739489, 0.1106147557426], +[0.2959852398229, 0.1102872788048], +[0.3010858697591, 0.1099524626838], +[0.3061906250535, 0.1096102293438], +[0.3112995667225, 0.1092605002746], +[0.3164127555035, 0.1089031965293], +[0.3215302518551, 0.1085382387634], +[0.3266521159577, 0.1081655472743], +[0.3317784077128, 0.1077850420417], +[0.3369091867434, 0.1073966427676], +[0.3420445123932, 0.1070002689184], +[0.3471844437259, 0.1065958397662], +[0.352329039524, 0.1061832744314], +[0.3574783582878, 0.1057624919262], +[0.3626324582327, 0.1053334111982], +[-0.35982399086, 0.1101978193791], +[-0.3546721557704, 0.1106194509555], +[-0.3495252038573, 0.1110328708906], +[-0.3443830757478, 0.1114381596818], +[-0.3392457117424, 0.1118353977784], +[-0.3341130518173, 0.1122246655383], +[-0.3289850356274, 0.1126060431841], +[-0.3238616025079, 0.1129796107598], +[-0.3187426914763, 0.1133454480889], +[-0.3136282412335, 0.1137036347321], +[-0.3085181901649, 0.1140542499472], +[-0.3034124763423, 0.1143973726464], +[-0.2983110375232, 0.1147330813583], +[-0.2932138111526, 0.1150614541871], +[-0.2881207343627, 0.1153825687738], +[-0.283031743974, 0.1156965022582], +[-0.2779467764947, 0.1160033312403], +[-0.2728657681217, 0.1163031317431], +[-0.2677886547405, 0.1165959791758], +[-0.2627153719254, 0.1168819482971], +[-0.2576458549399, 0.1171611131792], +[-0.2525800387368, 0.1174335471727], +[-0.2475178579587, 0.1176993228713], +[-0.2424592469385, 0.1179585120772], +[-0.2374041396996, 0.1182111857671], +[-0.2323524699572, 0.1184574140588], +[-0.2273041711184, 0.118697266178], +[-0.2222591762836, 0.1189308104253], +[-0.2172174182475, 0.1191581141444], +[-0.2121788295007, 0.1193792436903], +[-0.2071433422308, 0.1195942643978], +[-0.2021108883243, 0.1198032405509], +[-0.1970813993685, 0.1200062353525], +[-0.1920548066541, 0.1202033108943], +[-0.1870310411769, 0.1203945281276], +[-0.1820100336411, 0.1205799468347], +[-0.1769917144619, 0.1207596255999], +[-0.1719760137688, 0.120933621782], +[-0.166962861409, 0.1211019914871], +[-0.1619521869514, 0.1212647895413], +[-0.15694391969, 0.1214220694648], +[-0.151937988649, 0.1215738834461], +[-0.1469343225868, 0.1217202823165], +[-0.1419328500009, 0.1218613155258], +[-0.1369334991335, 0.1219970311182], +[-0.1319361979763, 0.1221274757088], +[-0.1269408742769, 0.1222526944609], +[-0.121947455544, 0.1223727310635], +[-0.1169558690546, 0.1224876277104], +[-0.1119660418596, 0.1225974250785], +[-0.1069779007916, 0.1227021623083], +[-0.1019913724712, 0.1228018769841], +[-0.09700638331473, 0.1228966051151], +[-0.09202285954187, 0.1229863811175], +[-0.08704072718345, 0.1230712377971], +[-0.08205991208958, 0.1231512063327], +[-0.07708033993799, 0.1232263162603], +[-0.07210193624259, 0.1232965954583], +[-0.06712462636228, 0.1233620701327], +[-0.06214833550992, 0.1234227648042], +[-0.05717298876154, 0.1234787022957], +[-0.05219851106565, 0.1235299037199], +[-0.04722482725288, 0.1235763884692], +[-0.0422518620456, 0.1236181742051], +[-0.03727954006779, 0.1236552768493], +[-0.03230778585505, 0.1236877105754], +[-0.0273365238647, 0.1237154878015], +[-0.02236567848599, 0.1237386191838], +[-0.01739517405037, 0.123757113611], +[-0.01242493484198, 0.1237709781995], +[-0.007454885108019, 0.1237802182901], +[-0.002484949069283, 0.1237848374446], +[0.002484949069283, 0.1237848374446], +[0.00745488510802, 0.1237802182901], +[0.01242493484198, 0.1237709781995], +[0.01739517405037, 0.123757113611], +[0.02236567848598, 0.1237386191838], +[0.0273365238647, 0.1237154878015], +[0.03230778585505, 0.1236877105754], +[0.03727954006779, 0.1236552768493], +[0.0422518620456, 0.1236181742051], +[0.04722482725288, 0.1235763884692], +[0.05219851106565, 0.1235299037199], +[0.05717298876154, 0.1234787022957], +[0.06214833550992, 0.1234227648042], +[0.06712462636228, 0.1233620701327], +[0.07210193624259, 0.1232965954583], +[0.07708033993799, 0.1232263162603], +[0.08205991208958, 0.1231512063327], +[0.08704072718345, 0.1230712377971], +[0.09202285954187, 0.1229863811175], +[0.09700638331472, 0.1228966051151], +[0.1019913724712, 0.1228018769841], +[0.1069779007916, 0.1227021623083], +[0.1119660418596, 0.1225974250785], +[0.1169558690546, 0.1224876277104], +[0.121947455544, 0.1223727310635], +[0.1269408742769, 0.1222526944609], +[0.1319361979763, 0.1221274757088], +[0.1369334991335, 0.1219970311182], +[0.1419328500009, 0.1218613155258], +[0.1469343225868, 0.1217202823165], +[0.151937988649, 0.1215738834461], +[0.15694391969, 0.1214220694648], +[0.1619521869514, 0.1212647895413], +[0.166962861409, 0.1211019914871], +[0.1719760137688, 0.120933621782], +[0.1769917144619, 0.1207596255999], +[0.1820100336411, 0.1205799468347], +[0.1870310411769, 0.1203945281276], +[0.1920548066541, 0.1202033108943], +[0.1970813993685, 0.1200062353525], +[0.2021108883243, 0.1198032405509], +[0.2071433422308, 0.1195942643978], +[0.2121788295007, 0.1193792436903], +[0.2172174182475, 0.1191581141444], +[0.2222591762836, 0.1189308104253], +[0.2273041711184, 0.118697266178], +[0.2323524699572, 0.1184574140588], +[0.2374041396996, 0.1182111857671], +[0.2424592469385, 0.1179585120772], +[0.2475178579587, 0.1176993228713], +[0.2525800387368, 0.1174335471727], +[0.2576458549399, 0.1171611131792], +[0.2627153719254, 0.1168819482971], +[0.2677886547405, 0.1165959791758], +[0.2728657681217, 0.1163031317431], +[0.2779467764947, 0.1160033312403], +[0.283031743974, 0.1156965022582], +[0.2881207343627, 0.1153825687738], +[0.2932138111526, 0.1150614541871], +[0.2983110375232, 0.1147330813583], +[0.3034124763423, 0.1143973726464], +[0.3085181901649, 0.1140542499472], +[0.3136282412336, 0.113703634732], +[0.3187426914763, 0.1133454480889], +[0.3238616025079, 0.1129796107598], +[0.3289850356274, 0.1126060431841], +[0.3341130518173, 0.1122246655383], +[0.3392457117424, 0.1118353977784], +[0.3443830757478, 0.1114381596818], +[0.3495252038573, 0.1110328708906], +[0.3546721557704, 0.1106194509555], +[0.35982399086, 0.1101978193791], +[-0.3570141660612, 0.1150645786909], +[-0.351864755103, 0.1154787235183], +[-0.3467203278086, 0.1158847435467], +[-0.3415808236105, 0.1162827187719], +[-0.3364461815737, 0.1166727291583], +[-0.3313163403991, 0.1170548545945], +[-0.326191238427, 0.1174291748487], +[-0.3210708136398, 0.1177957695259], +[-0.315955003665, 0.1181547180248], +[-0.3108437457769, 0.1185060994951], +[-0.3057369768995, 0.1188499927963], +[-0.3006346336076, 0.1191864764558], +[-0.2955366521287, 0.1195156286288], +[-0.2904429683447, 0.1198375270577], +[-0.285353517793, 0.1201522490323], +[-0.280268235668, 0.1204598713512], +[-0.2751870568219, 0.1207604702825], +[-0.2701099157662, 0.1210541215259], +[-0.2650367466724, 0.1213409001749], +[-0.2599674833734, 0.1216208806797], +[-0.2549020593644, 0.1218941368103], +[-0.2498404078041, 0.1221607416205], +[-0.2447824615158, 0.1224207674115], +[-0.2397281529886, 0.1226742856973], +[-0.2346774143791, 0.1229213671692], +[-0.2296301775122, 0.1231620816617], +[-0.2245863738834, 0.1233964981185], +[-0.2195459346601, 0.1236246845588], +[-0.2145087906834, 0.1238467080446], +[-0.2094748724707, 0.1240626346477], +[-0.2044441102175, 0.124272529418], +[-0.1994164337997, 0.1244764563514], +[-0.1943917727769, 0.1246744783592], +[-0.1893700563948, 0.1248666572368], +[-0.1843512135883, 0.125053053634], +[-0.179335172985, 0.1252337270251], +[-0.1743218629091, 0.1254087356799], +[-0.1693112113846, 0.1255781366347], +[-0.1643031461399, 0.1257419856643], +[-0.1592975946121, 0.1259003372548], +[-0.1542944839515, 0.1260532445759], +[-0.1492937410267, 0.126200759455], +[-0.1442952924298, 0.126342932351], +[-0.1392990644815, 0.1264798123292], +[-0.1343049832377, 0.1266114470364], +[-0.1293129744945, 0.1267378826771], +[-0.1243229637953, 0.1268591639898], +[-0.1193348764371, 0.1269753342246], +[-0.1143486374772, 0.1270864351209], +[-0.1093641717408, 0.1271925068859], +[-0.1043814038279, 0.1272935881744], +[-0.09940025812129, 0.1273897160681], +[-0.09442065879424, 0.1274809260573], +[-0.08944252981891, 0.1275672520215], +[-0.08446579497463, 0.1276487262127], +[-0.07949037785657, 0.1277253792377], +[-0.0745162018846, 0.1277972400425], +[-0.06954319031247, 0.1278643358967], +[-0.06457126623702, 0.1279266923796], +[-0.05960035260777, 0.1279843333662], +[-0.05463037223656, 0.1280372810146], +[-0.04966124780748, 0.1280855557545], +[-0.04469290188689, 0.1281291762759], +[-0.03972525693359, 0.1281681595192], +[-0.03475823530921, 0.1282025206663], +[-0.02979175928866, 0.1282322731323], +[-0.0248257510707, 0.1282574285581], +[-0.01986013278864, 0.1282779968048], +[-0.0148948265211, 0.1282939859473], +[-0.009929754302901, 0.128305402271], +[-0.004964838135902, 0.1283122502678], +[3.184669120136e-17, 0.1283145326338], +[0.004964838135903, 0.1283122502678], +[0.009929754302903, 0.128305402271], +[0.0148948265211, 0.1282939859473], +[0.01986013278864, 0.1282779968048], +[0.0248257510707, 0.1282574285581], +[0.02979175928866, 0.1282322731323], +[0.03475823530921, 0.1282025206663], +[0.03972525693359, 0.1281681595192], +[0.04469290188689, 0.1281291762759], +[0.04966124780748, 0.1280855557545], +[0.05463037223656, 0.1280372810146], +[0.05960035260777, 0.1279843333662], +[0.06457126623702, 0.1279266923796], +[0.06954319031247, 0.1278643358967], +[0.0745162018846, 0.1277972400425], +[0.07949037785657, 0.1277253792377], +[0.08446579497463, 0.1276487262127], +[0.08944252981891, 0.1275672520215], +[0.09442065879424, 0.1274809260573], +[0.09940025812128, 0.1273897160681], +[0.1043814038279, 0.1272935881744], +[0.1093641717408, 0.1271925068859], +[0.1143486374772, 0.1270864351209], +[0.1193348764371, 0.1269753342246], +[0.1243229637953, 0.1268591639898], +[0.1293129744945, 0.1267378826771], +[0.1343049832377, 0.1266114470364], +[0.1392990644815, 0.1264798123292], +[0.1442952924298, 0.126342932351], +[0.1492937410267, 0.126200759455], +[0.1542944839515, 0.1260532445759], +[0.1592975946121, 0.1259003372548], +[0.1643031461399, 0.1257419856643], +[0.1693112113846, 0.1255781366347], +[0.1743218629091, 0.1254087356799], +[0.179335172985, 0.1252337270252], +[0.1843512135883, 0.125053053634], +[0.1893700563948, 0.1248666572368], +[0.1943917727769, 0.1246744783592], +[0.1994164337997, 0.1244764563514], +[0.2044441102175, 0.124272529418], +[0.2094748724707, 0.1240626346477], +[0.2145087906834, 0.1238467080446], +[0.2195459346601, 0.1236246845588], +[0.2245863738834, 0.1233964981185], +[0.2296301775122, 0.1231620816617], +[0.2346774143791, 0.1229213671692], +[0.2397281529886, 0.1226742856973], +[0.2447824615158, 0.1224207674115], +[0.2498404078041, 0.1221607416205], +[0.2549020593644, 0.1218941368103], +[0.2599674833734, 0.1216208806797], +[0.2650367466724, 0.1213409001749], +[0.2701099157662, 0.1210541215259], +[0.2751870568219, 0.1207604702825], +[0.280268235668, 0.1204598713512], +[0.285353517793, 0.1201522490323], +[0.2904429683447, 0.1198375270577], +[0.2955366521287, 0.1195156286288], +[0.3006346336076, 0.1191864764558], +[0.3057369768995, 0.1188499927963], +[0.3108437457769, 0.1185060994951], +[0.315955003665, 0.1181547180248], +[0.3210708136398, 0.1177957695259], +[0.326191238427, 0.1174291748487], +[0.3313163403991, 0.1170548545945], +[0.3364461815737, 0.1166727291583], +[0.3415808236105, 0.1162827187719], +[0.3467203278086, 0.1158847435467], +[0.351864755103, 0.1154787235183], +[0.3570141660612, 0.1150645786909], +[-0.3542032204846, 0.1199330194022], +[-0.349056246802, 0.1203401521635], +[-0.3439145007741, 0.1207387362597], +[-0.338777775594, 0.1211293622454], +[-0.3336460090562, 0.1215121096523], +[-0.3285191385525, 0.1218870579513], +[-0.3233971010764, 0.1222542865075], +[-0.3182798332267, 0.1226138745365], +[-0.313167271211, 0.1229659010608], +[-0.308059350849, 0.1233104448673], +[-0.3029560075754, 0.1236475844641], +[-0.2978571764425, 0.1239773980396], +[-0.2927627921227, 0.1242999634204], +[-0.2876727889112, 0.1246153580308], +[-0.2825871007278, 0.1249236588523], +[-0.2775056611189, 0.1252249423836], +[-0.2724284032602, 0.1255192846014], +[-0.2673552599575, 0.1258067609217], +[-0.26228616365, 0.1260874461603], +[-0.2572210464109, 0.126361414496], +[-0.2521598399501, 0.1266287394325], +[-0.2471024756155, 0.1268894937613], +[-0.2420488843957, 0.1271437495252], +[-0.2369989969213, 0.1273915779819], +[-0.2319527434673, 0.1276330495688], +[-0.2269100539556, 0.1278682338668], +[-0.2218708579568, 0.1280971995667], +[-0.2168350846928, 0.1283200144338], +[-0.2118026630399, 0.1285367452746], +[-0.2067735215309, 0.1287474579032], +[-0.2017475883585, 0.1289522171082], +[-0.1967247913784, 0.1291510866205], +[-0.1917050581123, 0.1293441290811], +[-0.186688315752, 0.1295314060096], +[-0.1816744911627, 0.1297129777733], +[-0.1766635108875, 0.1298889035567], +[-0.1716553011512, 0.1300592413314], +[-0.1666497878651, 0.1302240478266], +[-0.1616468966315, 0.1303833785008], +[-0.156646552749, 0.1305372875124], +[-0.1516486812177, 0.1306858276931], +[-0.1466532067446, 0.1308290505198], +[-0.1416600537495, 0.1309670060885], +[-0.1366691463712, 0.1310997430884], +[-0.1316804084737, 0.1312273087761], +[-0.126693763653, 0.1313497489518], +[-0.1217091352436, 0.1314671079342], +[-0.1167264463264, 0.1315794285381], +[-0.1117456197353, 0.1316867520516], +[-0.1067665780656, 0.1317891182137], +[-0.1017892436815, 0.131886565194], +[-0.09681353872487, 0.1319791295717], +[-0.091839385123, 0.1320668463161], +[-0.08686670459794, 0.1321497487682], +[-0.08189541867517, 0.1322278686222], +[-0.07692544869292, 0.1323012359086], +[-0.07195671581151, 0.1323698789779], +[-0.06698914102304, 0.1324338244852], +[-0.0620226451612, 0.1324930973754], +[-0.05705714891132, 0.1325477208699], +[-0.05209257282061, 0.1325977164534], +[-0.04712883730851, 0.1326431038625], +[-0.04216586267726, 0.1326839010745], +[-0.03720356912262, 0.1327201242976], +[-0.03224187674469, 0.1327517879619], +[-0.02728070555886, 0.1327789047114], +[-0.0223199755069, 0.132801485397], +[-0.01735960646813, 0.1328195390701], +[-0.01239951827064, 0.1328330729782], +[-0.007439630702599, 0.1328420925603], +[-0.002479863523664, 0.1328466014442], +[0.002479863523664, 0.1328466014442], +[0.007439630702599, 0.1328420925603], +[0.01239951827064, 0.1328330729782], +[0.01735960646813, 0.1328195390701], +[0.0223199755069, 0.132801485397], +[0.02728070555886, 0.1327789047114], +[0.03224187674469, 0.1327517879619], +[0.03720356912262, 0.1327201242976], +[0.04216586267726, 0.1326839010745], +[0.04712883730851, 0.1326431038625], +[0.05209257282061, 0.1325977164534], +[0.05705714891132, 0.1325477208699], +[0.06202264516119, 0.1324930973754], +[0.06698914102304, 0.1324338244852], +[0.07195671581151, 0.1323698789779], +[0.07692544869292, 0.1323012359086], +[0.08189541867517, 0.1322278686222], +[0.08686670459793, 0.1321497487682], +[0.091839385123, 0.1320668463161], +[0.09681353872486, 0.1319791295717], +[0.1017892436815, 0.131886565194], +[0.1067665780656, 0.1317891182137], +[0.1117456197353, 0.1316867520516], +[0.1167264463264, 0.1315794285381], +[0.1217091352436, 0.1314671079342], +[0.126693763653, 0.1313497489518], +[0.1316804084737, 0.1312273087761], +[0.1366691463712, 0.1310997430884], +[0.1416600537495, 0.1309670060885], +[0.1466532067446, 0.1308290505198], +[0.1516486812177, 0.1306858276931], +[0.156646552749, 0.1305372875124], +[0.1616468966315, 0.1303833785008], +[0.1666497878651, 0.1302240478266], +[0.1716553011512, 0.1300592413314], +[0.1766635108875, 0.1298889035567], +[0.1816744911627, 0.1297129777733], +[0.186688315752, 0.1295314060096], +[0.1917050581123, 0.1293441290811], +[0.1967247913784, 0.1291510866205], +[0.2017475883585, 0.1289522171082], +[0.2067735215309, 0.1287474579032], +[0.2118026630399, 0.1285367452746], +[0.2168350846928, 0.1283200144338], +[0.2218708579568, 0.1280971995667], +[0.2269100539556, 0.1278682338668], +[0.2319527434674, 0.1276330495687], +[0.2369989969213, 0.1273915779819], +[0.2420488843957, 0.1271437495252], +[0.2471024756155, 0.1268894937613], +[0.2521598399501, 0.1266287394325], +[0.2572210464109, 0.126361414496], +[0.26228616365, 0.1260874461603], +[0.2673552599575, 0.1258067609217], +[0.2724284032602, 0.1255192846014], +[0.2775056611189, 0.1252249423836], +[0.2825871007278, 0.1249236588523], +[0.2876727889112, 0.1246153580308], +[0.2927627921227, 0.1242999634204], +[0.2978571764425, 0.1239773980396], +[0.3029560075754, 0.1236475844641], +[0.308059350849, 0.1233104448673], +[0.313167271211, 0.1229659010608], +[0.3182798332267, 0.1226138745365], +[0.3233971010764, 0.1222542865075], +[0.3285191385525, 0.1218870579513], +[0.3336460090562, 0.1215121096523], +[0.338777775594, 0.1211293622454], +[0.3439145007741, 0.1207387362597], +[0.349056246802, 0.1203401521635], +[0.3542032210401, 0.1199330187799], +[-0.3513908105047, 0.1248045162238], +[-0.3462467211764, 0.1252035798516], +[-0.3411078119752, 0.1255946932974], +[-0.335974019836, 0.1259779357141], +[-0.3308452812487, 0.126353386253], +[-0.3257215322631, 0.1267211240184], +[-0.3206027084944, 0.1270812280224], +[-0.3154887451274, 0.1274337771405], +[-0.3103795769212, 0.1277788500676], +[-0.3052751382127, 0.1281165252747], +[-0.3001753629209, 0.1284468809654], +[-0.2950801845501, 0.1287699950339], +[-0.2899895361932, 0.1290859450229], +[-0.2849033505353, 0.1293948080817], +[-0.279821559856, 0.1296966609254], +[-0.274744096033, 0.1299915797943], +[-0.2696708905445, 0.1302796404137], +[-0.2646018744718, 0.130560917954], +[-0.2595369785024, 0.1308354869919], +[-0.2544761329325, 0.131103421471], +[-0.2494192676693, 0.1313647946641], +[-0.2443663122343, 0.1316196791347], +[-0.2393171957654, 0.1318681467002], +[-0.23427184702, 0.1321102683942], +[-0.2292301943778, 0.1323461144304], +[-0.2241921658435, 0.1325757541663], +[-0.2191576890503, 0.1327992560676], +[-0.2141266912627, 0.1330166876731], +[-0.2090990993799, 0.1332281155597], +[-0.2040748399393, 0.1334336053083], +[-0.1990538391201, 0.13363322147], +[-0.1940360227471, 0.1338270275327], +[-0.1890213162949, 0.1340150858883], +[-0.184009644892, 0.1341974578004], +[-0.1790009333251, 0.1343742033724], +[-0.1739951060439, 0.1345453815164], +[-0.168992087166, 0.134711049922], +[-0.1639918004821, 0.1348712650267], +[-0.1589941694613, 0.1350260819856], +[-0.1539991172567, 0.1351755546429], +[-0.1490065667111, 0.1353197355029], +[-0.1440164403639, 0.1354586757026], +[-0.1390286604565, 0.1355924249842], +[-0.1340431489399, 0.1357210316682], +[-0.1290598274808, 0.1358445426283], +[-0.1240786174697, 0.1359630032652], +[-0.1190994400278, 0.1360764574826], +[-0.1141222160147, 0.1361849476633], +[-0.1091468660371, 0.1362885146459], +[-0.1041733104561, 0.1363871977027], +[-0.09920146939658, 0.1364810345177], +[-0.09423126275569, 0.1365700611663], +[-0.08926261021176, 0.1366543120953], +[-0.08429543123376, 0.1367338201034], +[-0.07932964509075, 0.1368086163231], +[-0.07436517086167, 0.1368787302035], +[-0.06940192744527, 0.1369441894936], +[-0.06443983357031, 0.1370050202266], +[-0.05947880780592, 0.1370612467053], +[-0.05451876857219, 0.1371128914885], +[-0.04955963415089, 0.1371599753781], +[-0.04460132269642, 0.1372025174069], +[-0.03964375224684, 0.1372405348286], +[-0.03468684073512, 0.1372740431069], +[-0.02973050600046, 0.1373030559075], +[-0.02477466579976, 0.13732758509], +[-0.01981923781918, 0.1373476407007], +[-0.0148641396858, 0.1373632309675], +[-0.009909288979336, 0.1373743622947], +[-0.004954603243933, 0.1373810392595], +[-1.321637684856e-14, 0.1373832646091], +[0.004954603243933, 0.1373810392595], +[0.009909288979336, 0.1373743622947], +[0.0148641396858, 0.1373632309675], +[0.01981923781918, 0.1373476407007], +[0.02477466579976, 0.13732758509], +[0.02973050600046, 0.1373030559075], +[0.03468684073513, 0.1372740431069], +[0.03964375224684, 0.1372405348286], +[0.04460132269642, 0.1372025174069], +[0.04955963415089, 0.1371599753781], +[0.05451876857219, 0.1371128914885], +[0.05947880780592, 0.1370612467053], +[0.06443983357031, 0.1370050202266], +[0.06940192744527, 0.1369441894936], +[0.07436517086167, 0.1368787302035], +[0.07932964509075, 0.1368086163231], +[0.08429543123378, 0.1367338201034], +[0.08926261021176, 0.1366543120953], +[0.09423126275569, 0.1365700611663], +[0.09920146939658, 0.1364810345177], +[0.1041733104561, 0.1363871977027], +[0.1091468660371, 0.1362885146459], +[0.1141222160147, 0.1361849476633], +[0.1190994400278, 0.1360764574826], +[0.1240786174697, 0.1359630032652], +[0.1290598274808, 0.1358445426283], +[0.1340431489399, 0.1357210316682], +[0.1390286604565, 0.1355924249842], +[0.1440164403639, 0.1354586757026], +[0.1490065667111, 0.1353197355029], +[0.1539991172567, 0.1351755546429], +[0.1589941694613, 0.1350260819856], +[0.1639918004821, 0.1348712650267], +[0.168992087166, 0.134711049922], +[0.1739951060439, 0.1345453815164], +[0.1790009333251, 0.1343742033724], +[0.184009644892, 0.1341974578004], +[0.1890213162949, 0.1340150858883], +[0.1940360227471, 0.1338270275327], +[0.1990538391201, 0.13363322147], +[0.2040748399393, 0.1334336053083], +[0.2090990993799, 0.1332281155597], +[0.2141266912627, 0.1330166876731], +[0.2191576890503, 0.1327992560676], +[0.2241921658435, 0.1325757541663], +[0.2292301943778, 0.1323461144304], +[0.23427184702, 0.1321102683942], +[0.2393171957654, 0.1318681467002], +[0.2443663122343, 0.1316196791347], +[0.2494192676693, 0.1313647946641], +[0.2544761329325, 0.131103421471], +[0.2595369785024, 0.1308354869919], +[0.2646018744718, 0.130560917954], +[0.2696708905445, 0.1302796404137], +[0.274744096033, 0.1299915797943], +[0.279821559856, 0.1296966609254], +[0.2849033505353, 0.1293948080817], +[0.2899895361932, 0.1290859450229], +[0.2950801845501, 0.1287699950339], +[0.3001753629209, 0.1284468809654], +[0.3052751382127, 0.1281165252747], +[0.3103795769212, 0.1277788500676], +[0.3154887451274, 0.1274337771405], +[0.3206027084944, 0.1270812280224], +[0.3257215322631, 0.1267211240184], +[0.3308452812487, 0.126353386253], +[0.335974019836, 0.1259779357141], +[0.3411078119752, 0.1255946932974], +[0.3462467211764, 0.1252035798516], +[0.3513908105047, 0.1248045162238], +[-0.3485775351512, 0.1296768786871], +[-0.3434362683455, 0.1300688499231], +[-0.3383003504753, 0.1304524593033], +[-0.333169644348, 0.1308282851619], +[-0.3280440851153, 0.1311964063209], +[-0.3229236074533, 0.1315569015689], +[-0.3178081455678, 0.1319098496146], +[-0.3126976332004, 0.1322553290422], +[-0.3075920036329, 0.1325934182669], +[-0.3024911896927, 0.1329241954905], +[-0.2973951237567, 0.133247738658], +[-0.2923037377564, 0.1335641254144], +[-0.2872169631814, 0.133873433062], +[-0.2821347310834, 0.1341757385181], +[-0.2770569720805, 0.134471118273], +[-0.2719836163601, 0.1347596483492], +[-0.2669145936832, 0.1350414042598], +[-0.2618498333871, 0.1353164609687], +[-0.2567892643898, 0.1355848928499], +[-0.2517328151923, 0.1358467736484], +[-0.2466804138829, 0.1361021764409], +[-0.2416319881401, 0.136351173597], +[-0.236587465236, 0.1365938367409], +[-0.2315467720402, 0.1368302367137], +[-0.2265098350227, 0.1370604435359], +[-0.2214765802581, 0.1372845263703], +[-0.2164469334291, 0.1375025534857], +[-0.2114208198303, 0.1377145922207], +[-0.2063981643722, 0.1379207089484], +[-0.2013788915854, 0.1381209690406], +[-0.196362925625, 0.1383154368339], +[-0.1913501902747, 0.1385041755951], +[-0.1863406089519, 0.1386872474875], +[-0.1813341047123, 0.138864713538], +[-0.1763306002549, 0.1390366336044], +[-0.1713300179278, 0.1392030663431], +[-0.1663322797329, 0.1393640691776], +[-0.1613373073323, 0.1395196982678], +[-0.1563450220541, 0.1396700084791], +[-0.1513553448987, 0.139815053353], +[-0.146368196545, 0.1399548850778], +[-0.1413834973576, 0.1400895544598], +[-0.1364011673935, 0.1402191108957], +[-0.1314211264095, 0.1403436023452], +[-0.1264432938698, 0.1404630753043], +[-0.1214675889535, 0.1405775747797], +[-0.1164939305631, 0.1406871442637], +[-0.1115222373327, 0.1407918257095], +[-0.1065524276364, 0.1408916595079], +[-0.1015844195972, 0.1409866844644], +[-0.09661813109644, 0.1410769377773], +[-0.0916534797828, 0.1411624550162], +[-0.08669038308207, 0.1412432701022], +[-0.08172875820699, 0.141319415288], +[-0.0767685221672, 0.1413909211395], +[-0.07180959177983, 0.1414578165185], +[-0.0668518836797, 0.1415201285654], +[-0.06189531433024, 0.141577882684], +[-0.05693980003434, 0.1416311025261], +[-0.0519852569455, 0.1416798099784], +[-0.04703160107905, 0.1417240251492], +[-0.04207874832368, 0.1417637663567], +[-0.03712661445297, 0.1417990501183], +[-0.03217511513714, 0.1418298911409], +[-0.02722416595494, 0.1418563023121], +[-0.02227368240558, 0.1418782946926], +[-0.01732357992082, 0.1418958775097], +[-0.01237377387713, 0.1419090581519], +[-0.007424179607866, 0.1419178421643], +[-0.002474712415603, 0.1419222332456], +[0.002474712415603, 0.1419222332456], +[0.007424179607866, 0.1419178421643], +[0.01237377387713, 0.1419090581519], +[0.01732357992082, 0.1418958775097], +[0.02227368240558, 0.1418782946926], +[0.02722416595494, 0.1418563023121], +[0.03217511513714, 0.1418298911409], +[0.03712661445297, 0.1417990501183], +[0.04207874832368, 0.1417637663567], +[0.04703160107905, 0.1417240251492], +[0.0519852569455, 0.1416798099784], +[0.05693980003434, 0.1416311025261], +[0.06189531433024, 0.141577882684], +[0.06685188367971, 0.1415201285654], +[0.07180959177983, 0.1414578165185], +[0.07676852216719, 0.1413909211395], +[0.08172875820696, 0.1413194152879], +[0.08669038308207, 0.1412432701022], +[0.0916534797828, 0.1411624550162], +[0.09661813109644, 0.1410769377773], +[0.1015844195972, 0.1409866844644], +[0.1065524276364, 0.1408916595079], +[0.1115222373327, 0.1407918257095], +[0.1164939305631, 0.1406871442637], +[0.1214675889535, 0.1405775747797], +[0.1264432938698, 0.1404630753043], +[0.1314211264095, 0.1403436023452], +[0.1364011673935, 0.1402191108957], +[0.1413834973576, 0.1400895544598], +[0.146368196545, 0.1399548850778], +[0.1513553448987, 0.139815053353], +[0.1563450220541, 0.1396700084791], +[0.1613373073323, 0.1395196982678], +[0.1663322797329, 0.1393640691776], +[0.1713300179278, 0.1392030663431], +[0.1763306002549, 0.1390366336044], +[0.1813341047123, 0.138864713538], +[0.1863406089519, 0.1386872474875], +[0.1913501902747, 0.1385041755951], +[0.196362925625, 0.1383154368339], +[0.2013788915854, 0.1381209690406], +[0.2063981643722, 0.1379207089484], +[0.2114208198303, 0.1377145922207], +[0.2164469334291, 0.1375025534857], +[0.2214765802581, 0.1372845263703], +[0.2265098350227, 0.1370604435359], +[0.2315467720402, 0.1368302367137], +[0.236587465236, 0.1365938367409], +[0.2416319881401, 0.136351173597], +[0.2466804138829, 0.1361021764409], +[0.2517328151923, 0.1358467736484], +[0.2567892643898, 0.1355848928499], +[0.2618498333871, 0.1353164609687], +[0.2669145936832, 0.1350414042599], +[0.2719836163601, 0.1347596483492], +[0.2770569720805, 0.134471118273], +[0.2821347310834, 0.1341757385181], +[0.2872169631814, 0.133873433062], +[0.2923037377564, 0.1335641254144], +[0.2973951237567, 0.133247738658], +[0.3024911896927, 0.1329241954905], +[0.3075920036329, 0.1325934182669], +[0.3126976332004, 0.1322553290422], +[0.3178081455678, 0.1319098496146], +[0.3229236074533, 0.1315569015689], +[0.3280440851153, 0.1311964063209], +[0.333169644348, 0.1308282851619], +[0.3383003504753, 0.1304524593033], +[0.3434362683455, 0.1300688499231], +[0.3485775366746, 0.1296768771348], +[-0.3457631219108, 0.1345519587977], +[-0.3406249782562, 0.1349358060674], +[-0.335492205197, 0.1353118792661], +[-0.3303647370319, 0.1356802569134], +[-0.3252425075421, 0.1360410175535], +[-0.3201254499983, 0.1363942397089], +[-0.3150134971675, 0.1367400018343], +[-0.3099065813187, 0.1370783822711], +[-0.304804634229, 0.1374094592017], +[-0.2997075871896, 0.1377333106055], +[-0.29461537101, 0.1380500142141], +[-0.2895279160242, 0.1383596474677], +[-0.284445152095, 0.1386622874715], +[-0.2793670086188, 0.1389580109529], +[-0.27429341453, 0.139246894219], +[-0.2692242983056, 0.1395290131142], +[-0.2641595879694, 0.1398044429789], +[-0.259099211096, 0.1400732586078], +[-0.2540430948154, 0.1403355342097], +[-0.2489911658165, 0.1405913433662], +[-0.2439433503518, 0.1408407589926], +[-0.2388995742409, 0.1410838532978], +[-0.2338597628751, 0.1413206977452], +[-0.2288238412212, 0.1415513630143], +[-0.2237917338259, 0.1417759189622], +[-0.2187633648202, 0.1419944345856], +[-0.2137386579232, 0.1422069779839], +[-0.2087175364475, 0.1424136163219], +[-0.2036999233031, 0.1426144157934], +[-0.1986857410024, 0.1428094415853], +[-0.1936749116654, 0.1429987578421], +[-0.1886673570244, 0.1431824276307], +[-0.1836629984294, 0.1433605129062], +[-0.1786617568538, 0.1435330744775], +[-0.1736635528999, 0.1437001719743], +[-0.1686683068046, 0.1438618638139], +[-0.1636759384461, 0.1440182071687], +[-0.1586863673497, 0.1441692579349], +[-0.1536995126946, 0.144315070701], +[-0.1487152933207, 0.1444556987173], +[-0.143733627736, 0.1445911938662], +[-0.1387544341233, 0.1447216066324], +[-0.1337776303484, 0.144846986075], +[-0.1288031339679, 0.1449673797991], +[-0.1238308622368, 0.145082833929], +[-0.1188607321176, 0.1451933930814], +[-0.1138926602885, 0.1452991003401], +[-0.1089265631524, 0.1453999972309], +[-0.1039623568461, 0.1454961236974], +[-0.09899995724996, 0.1455875180781], +[-0.09403927999713, 0.1456742170839], +[-0.08908024048386, 0.1457562557761], +[-0.0841227538795, 0.1458336675466], +[-0.079166735137, 0.1459064840973], +[-0.07421209900349, 0.145974735422], +[-0.06925876003118, 0.1460384497882], +[-0.06430663258844, 0.1460976537202], +[-0.05935563087105, 0.1461523719834], +[-0.05440566891372, 0.1462026275695], +[-0.04945666060173, 0.1462484416825], +[-0.04450851968272, 0.1462898337256], +[-0.03956115977874, 0.1463268212904], +[-0.03461449439834, 0.1463594201452], +[-0.02966843694886, 0.146387644226], +[-0.0247229007488, 0.146411505628], +[-0.01977779904031, 0.146431014598], +[-0.0148330450018, 0.1464461795284], +[-0.00988855176057, 0.1464570069519], +[-0.004944232405532, 0.1464635015376], +[2.756012656565e-13, 0.146465666088], +[0.004944232405532, 0.1464635015376], +[0.00988855176057, 0.1464570069519], +[0.0148330450018, 0.1464461795284], +[0.01977779904031, 0.146431014598], +[0.0247229007488, 0.146411505628], +[0.02966843694886, 0.146387644226], +[0.03461449439834, 0.1463594201452], +[0.03956115977874, 0.1463268212904], +[0.04450851968272, 0.1462898337256], +[0.04945666060173, 0.1462484416825], +[0.05440566891372, 0.1462026275695], +[0.05935563087105, 0.1461523719834], +[0.06430663258844, 0.1460976537202], +[0.06925876003118, 0.1460384497882], +[0.07421209900349, 0.145974735422], +[0.079166735137, 0.1459064840973], +[0.0841227538795, 0.1458336675466], +[0.08908024048386, 0.1457562557761], +[0.09403927999713, 0.1456742170839], +[0.09899995724996, 0.1455875180781], +[0.1039623568461, 0.1454961236974], +[0.1089265631524, 0.1453999972309], +[0.1138926602885, 0.1452991003401], +[0.1188607321176, 0.1451933930814], +[0.1238308622368, 0.145082833929], +[0.1288031339679, 0.1449673797991], +[0.1337776303484, 0.144846986075], +[0.1387544341233, 0.1447216066324], +[0.143733627736, 0.1445911938662], +[0.1487152933207, 0.1444556987173], +[0.1536995126946, 0.144315070701], +[0.1586863673497, 0.1441692579349], +[0.1636759384461, 0.1440182071687], +[0.1686683068046, 0.1438618638139], +[0.1736635528999, 0.1437001719743], +[0.1786617568538, 0.1435330744775], +[0.1836629984294, 0.1433605129062], +[0.1886673570244, 0.1431824276307], +[0.1936749116654, 0.1429987578421], +[0.1986857410024, 0.1428094415853], +[0.2036999233031, 0.1426144157934], +[0.2087175364475, 0.1424136163219], +[0.2137386579232, 0.1422069779839], +[0.2187633648202, 0.1419944345856], +[0.2237917338259, 0.1417759189622], +[0.2288238412212, 0.1415513630143], +[0.2338597628751, 0.1413206977452], +[0.2388995742409, 0.1410838532978], +[0.2439433503518, 0.1408407589926], +[0.2489911658165, 0.1405913433662], +[0.2540430948154, 0.1403355342097], +[0.259099211096, 0.1400732586078], +[0.2641595879694, 0.1398044429789], +[0.2692242983056, 0.1395290131142], +[0.27429341453, 0.139246894219], +[0.2793670086188, 0.1389580109529], +[0.284445152095, 0.1386622874715], +[0.2895279160242, 0.1383596474677], +[0.29461537101, 0.1380500142141], +[0.2997075871896, 0.1377333106055], +[0.3048046342289, 0.1374094592019], +[0.3099065813187, 0.1370783822711], +[0.3150134971675, 0.1367400018343], +[0.3201254499983, 0.1363942397089], +[0.3252425075421, 0.1360410175535], +[0.3303647370319, 0.1356802569134], +[0.335492205197, 0.1353118792661], +[0.3406249782562, 0.1349358060674], +[0.3457631219108, 0.1345519587977], +[-0.342947880051, 0.1394281007342], +[-0.3378129407005, 0.1398042922921], +[-0.3326834649386, 0.1401727984888], +[-0.3275593856961, 0.1405336976041], +[-0.322440635352, 0.1408870679548], +[-0.3173271457414, 0.1412329878474], +[-0.3122188481626, 0.1415715355311], +[-0.3071156733843, 0.1419027891521], +[-0.3020175516518, 0.1422268267074], +[-0.2969244126938, 0.1425437259995], +[-0.2918361857277, 0.1428535645917], +[-0.2867527994661, 0.1431564197631], +[-0.281674182122, 0.143452368465], +[-0.2766002614143, 0.1437414872766], +[-0.2715309645728, 0.1440238523625], +[-0.2664662183438, 0.1442995394288], +[-0.2614059489944, 0.1445686236816], +[-0.2563500823178, 0.1448311797844], +[-0.2512985436383, 0.1450872818165], +[-0.2462512578156, 0.1453370032319], +[-0.2412081492497, 0.1455804168182], +[-0.2361691418858, 0.1458175946567], +[-0.2311341592191, 0.1460486080818], +[-0.2261031242993, 0.1462735276419], +[-0.2210759597356, 0.1464924230599], +[-0.2160525877018, 0.146705363195], +[-0.2110329299411, 0.146912416004], +[-0.2060169077714, 0.1471136485034], +[-0.2010044420902, 0.1473091267327], +[-0.1959954533805, 0.1474989157169], +[-0.1909898617162, 0.1476830794306], +[-0.1859875867673, 0.1478616807618], +[-0.1809885478066, 0.1480347814766], +[-0.1759926637151, 0.1482024421846], +[-0.1709998529889, 0.1483647223044], +[-0.1660100337451, 0.1485216800299], +[-0.1610231237289, 0.1486733722974], +[-0.1560390403204, 0.1488198547526], +[-0.1510577005418, 0.1489611817191], +[-0.146079021065, 0.1490974061671], +[-0.1411029182189, 0.1492285796825], +[-0.1361293079979, 0.1493547524371], +[-0.1311581060694, 0.1494759731594], +[-0.1261892277829, 0.1495922891061], +[-0.1212225881781, 0.1497037460343], +[-0.1162581019945, 0.1498103881745], +[-0.1112956836802, 0.1499122582042], +[-0.1063352474014, 0.1500093972229], +[-0.1013767070525, 0.1501018447275], +[-0.09641997626564, 0.150189638588], +[-0.09146496842145, 0.1502728150258], +[-0.08651159665915, 0.1503514085907], +[-0.08155977388753, 0.1504254521407], +[-0.07660941279587, 0.1504949768218], +[-0.07166042586517, 0.1505600120487], +[-0.06671272537957, 0.1506205854874], +[-0.06176622343801, 0.1506767230374], +[-0.05682083196607, 0.1507284488166], +[-0.05187646272801, 0.1507757851456], +[-0.046933027339, 0.1508187525345], +[-0.04199043727745, 0.1508573696695], +[-0.03704860389763, 0.1508916534021], +[-0.03210743844227, 0.1509216187378], +[-0.02716685205544, 0.1509472788273], +[-0.02222675579542, 0.1509686449577], +[-0.01728706064775, 0.1509857265461], +[-0.01234767753833, 0.1509985311331], +[-0.00740851734661, 0.1510070643783], +[-0.002469490918806, 0.1510113300568], +[0.002469490918807, 0.1510113300568], +[0.00740851734661, 0.1510070643783], +[0.01234767753833, 0.1509985311331], +[0.01728706064775, 0.1509857265461], +[0.02222675579542, 0.1509686449577], +[0.02716685205544, 0.1509472788273], +[0.03210743844227, 0.1509216187378], +[0.03704860389763, 0.1508916534021], +[0.04199043727745, 0.1508573696695], +[0.046933027339, 0.1508187525345], +[0.05187646272801, 0.1507757851456], +[0.05682083196607, 0.1507284488166], +[0.06176622343801, 0.1506767230374], +[0.06671272537957, 0.1506205854874], +[0.07166042586517, 0.1505600120487], +[0.07660941279587, 0.1504949768218], +[0.08155977388753, 0.1504254521407], +[0.08651159665915, 0.1503514085907], +[0.09146496842145, 0.1502728150258], +[0.09641997626564, 0.150189638588], +[0.1013767070525, 0.1501018447275], +[0.1063352474014, 0.1500093972229], +[0.1112956836802, 0.1499122582042], +[0.1162581019945, 0.1498103881745], +[0.1212225881781, 0.1497037460343], +[0.1261892277828, 0.1495922891061], +[0.1311581060694, 0.1494759731594], +[0.1361293079979, 0.1493547524371], +[0.1411029182189, 0.1492285796825], +[0.146079021065, 0.1490974061671], +[0.1510577005418, 0.1489611817191], +[0.1560390403204, 0.1488198547526], +[0.1610231237289, 0.1486733722974], +[0.1660100337451, 0.1485216800299], +[0.1709998529889, 0.1483647223044], +[0.1759926637151, 0.1482024421846], +[0.1809885478066, 0.1480347814766], +[0.1859875867673, 0.1478616807618], +[0.1909898617162, 0.1476830794306], +[0.1959954533805, 0.1474989157169], +[0.2010044420902, 0.1473091267327], +[0.2060169077714, 0.1471136485034], +[0.2110329299411, 0.146912416004], +[0.2160525877018, 0.146705363195], +[0.2210759597356, 0.1464924230599], +[0.2261031242993, 0.1462735276419], +[0.2311341592191, 0.1460486080818], +[0.2361691418858, 0.1458175946567], +[0.2412081492497, 0.1455804168182], +[0.2462512578156, 0.1453370032319], +[0.2512985436383, 0.1450872818165], +[0.2563500823178, 0.1448311797844], +[0.2614059489943, 0.1445686236816], +[0.2664662183438, 0.1442995394288], +[0.2715309645728, 0.1440238523625], +[0.2766002614143, 0.1437414872766], +[0.281674182122, 0.143452368465], +[0.2867527994661, 0.1431564197631], +[0.2918361857277, 0.1428535645917], +[0.2969244126938, 0.1425437259995], +[0.3020175516518, 0.1422268267074], +[0.3071156733843, 0.1419027891521], +[0.3122188481626, 0.1415715355311], +[0.3173271457414, 0.1412329878474], +[0.322440635352, 0.1408870679548], +[0.3275593856961, 0.1405336976041], +[0.3326834649386, 0.1401727984888], +[0.3378129407005, 0.1398042922921], +[0.342947880051, 0.1394281007342], +[-0.3401320138294, 0.1443051478201], +[-0.3350002453323, 0.1446741528928], +[-0.3298742183907, 0.1450350625584], +[-0.3247536780718, 0.1453884541497], +[-0.3196385553215, 0.1457344058059], +[-0.3145287805092, 0.1460729956666], +[-0.3094242834363, 0.1464043018241], +[-0.3043249933434, 0.1467284022767], +[-0.2992308389176, 0.1470453748824], +[-0.2941417482998, 0.1473552973124], +[-0.289057649091, 0.1476582470059], +[-0.2839784683587, 0.1479543011249], +[-0.2789041326439, 0.1482435365087], +[-0.2738345679661, 0.1485260296303], +[-0.26876969983, 0.1488018565515], +[-0.263709453231, 0.14907109288], +[-0.2586537526606, 0.1493338137255], +[-0.2536025221123, 0.1495900936572], +[-0.2485556850869, 0.1498400066613], +[-0.2435131645978, 0.1500836260985], +[-0.2384748831767, 0.1503210246629], +[-0.2334407628784, 0.1505522743404], +[-0.2284107252871, 0.1507774463678], +[-0.2233846915207, 0.1509966111926], +[-0.2183625822372, 0.1512098384327], +[-0.21334431764, 0.151417196837], +[-0.2083298174831, 0.1516187542465], +[-0.2033190010773, 0.151814577555], +[-0.198311787296, 0.1520047326714], +[-0.193308094581, 0.152189284482], +[-0.1883078409487, 0.1523682968129], +[-0.1833109439966, 0.1525418323935], +[-0.1783173209096, 0.1527099528202], +[-0.1733268884665, 0.1528727185211], +[-0.1683395630473, 0.1530301887203], +[-0.1633552606399, 0.1531824214038], +[-0.1583738968476, 0.1533294732855], +[-0.1533953868966, 0.1534713997738], +[-0.1484196456438, 0.1536082549389], +[-0.1434465875847, 0.1537400914809], +[-0.1384761268616, 0.1538669606986], +[-0.1335081772725, 0.1539889124584], +[-0.1285426522793, 0.1541059951651], +[-0.1235794650174, 0.1542182557321], +[-0.1186185283045, 0.1543257395534], +[-0.1136597546505, 0.154428490476], +[-0.1087030562672, 0.1545265507732], +[-0.1037483450783, 0.1546199611186], +[-0.09879553272982, 0.1547087605613], +[-0.09384453060071, 0.1547929865014], +[-0.08889524981366, 0.1548726746674], +[-0.08394760124617, 0.1549478590937], +[-0.07900149554194, 0.1550185720993], +[-0.07405684312239, 0.1550848442675], +[-0.06911355419849, 0.1551467044272], +[-0.06417153878274, 0.1552041796339], +[-0.05923070670144, 0.1552572951532], +[-0.05429096760705, 0.1553060744448], +[-0.04935223099086, 0.1553505391472], +[-0.04441440619574, 0.155390709064], +[-0.03947740242908, 0.1554266021516], +[-0.03454112877595, 0.1554582345071], +[-0.02960549421225, 0.1554856203586], +[-0.02467040761818, 0.1555087720557], +[-0.0197357777916, 0.1555277000614], +[-0.0148015134617, 0.1555424129456], +[-0.009867523302564, 0.1555529173798], +[-0.004933715946951, 0.1555592181321], +[3.554090738071e-14, 0.1555613180647], +[0.004933715946951, 0.1555592181321], +[0.009867523302564, 0.1555529173798], +[0.0148015134617, 0.1555424129456], +[0.0197357777916, 0.1555277000614], +[0.02467040761818, 0.1555087720557], +[0.02960549421225, 0.1554856203586], +[0.03454112877595, 0.1554582345071], +[0.03947740242908, 0.1554266021516], +[0.04441440619574, 0.155390709064], +[0.04935223099088, 0.1553505391472], +[0.05429096760705, 0.1553060744448], +[0.05923070670144, 0.1552572951532], +[0.06417153878274, 0.1552041796339], +[0.06911355419849, 0.1551467044272], +[0.07405684312239, 0.1550848442675], +[0.07900149554194, 0.1550185720993], +[0.08394760124617, 0.1549478590937], +[0.08889524981366, 0.1548726746674], +[0.09384453060071, 0.1547929865014], +[0.09879553272982, 0.1547087605613], +[0.1037483450783, 0.1546199611186], +[0.1087030562672, 0.1545265507732], +[0.1136597546505, 0.154428490476], +[0.1186185283045, 0.1543257395534], +[0.1235794650174, 0.1542182557321], +[0.1285426522793, 0.1541059951651], +[0.1335081772725, 0.1539889124584], +[0.1384761268616, 0.1538669606986], +[0.1434465875847, 0.1537400914809], +[0.1484196456438, 0.1536082549389], +[0.1533953868966, 0.1534713997738], +[0.1583738968476, 0.1533294732855], +[0.1633552606399, 0.1531824214038], +[0.1683395630473, 0.1530301887203], +[0.1733268884665, 0.1528727185211], +[0.1783173209096, 0.1527099528202], +[0.1833109439966, 0.1525418323935], +[0.1883078409487, 0.1523682968129], +[0.193308094581, 0.152189284482], +[0.198311787296, 0.1520047326714], +[0.2033190010773, 0.151814577555], +[0.2083298174831, 0.1516187542465], +[0.21334431764, 0.151417196837], +[0.2183625822372, 0.1512098384327], +[0.2233846915207, 0.1509966111926], +[0.2284107252871, 0.1507774463678], +[0.2334407628784, 0.1505522743404], +[0.2384748831767, 0.1503210246629], +[0.2435131645978, 0.1500836260985], +[0.2485556850869, 0.1498400066613], +[0.2536025221123, 0.1495900936572], +[0.2586537526606, 0.1493338137255], +[0.263709453231, 0.14907109288], +[0.26876969983, 0.1488018565515], +[0.2738345679661, 0.1485260296303], +[0.2789041326439, 0.1482435365087], +[0.2839784683587, 0.1479543011249], +[0.289057649091, 0.1476582470059], +[0.2941417482998, 0.1473552973124], +[0.2992308389176, 0.1470453748824], +[0.3043249933434, 0.1467284022767], +[0.3094242834363, 0.1464043018241], +[0.3145287805092, 0.1460729956666], +[0.3196385553215, 0.1457344058059], +[0.3247536780718, 0.1453884541497], +[0.3298742183907, 0.1450350625584], +[0.3350002453323, 0.1446741528928], +[0.3401320138275, 0.1443051478218], +[-0.3373152763169, 0.1491839753526], +[-0.3321869816846, 0.1495452324229], +[-0.3270645541531, 0.1498985173166], +[-0.3219477018293, 0.1502443737167], +[-0.3168363541957, 0.150582879635], +[-0.3117304401273, 0.1509141130927], +[-0.3066298879004, 0.1512381520732], +[-0.3015346252008, 0.151555074474], +[-0.2964445791316, 0.1518649580598], +[-0.291359676221, 0.1521678804159], +[-0.2862798424294, 0.1524639189017], +[-0.2812050031569, 0.1527531506045], +[-0.2761350832499, 0.1530356522944], +[-0.2710700070076, 0.1533115003785], +[-0.2660096981892, 0.1535807708566], +[-0.2609540800194, 0.1538435392761], +[-0.2559030751956, 0.1540998806887], +[-0.2508566058933, 0.1543498696057], +[-0.2458145937723, 0.1545935799557], +[-0.2407769599832, 0.1548310850409], +[-0.2357436251728, 0.1550624574947], +[-0.2307145094905, 0.15528776924], +[-0.2256895325941, 0.1555070914469], +[-0.2206686136558, 0.1557204944916], +[-0.2156516713681, 0.1559280479157], +[-0.2106386239506, 0.1561298203853], +[-0.2056293891552, 0.1563258796515], +[-0.2006238842735, 0.1565162925102], +[-0.1956220261421, 0.1567011247637], +[-0.1906237311502, 0.1568804411816], +[-0.1856289152458, 0.1570543054628], +[-0.1806374939424, 0.1572227801981], +[-0.1756493823266, 0.1573859268329], +[-0.1706644950649, 0.1575438056309], +[-0.1656827464112, 0.1576964756379], +[-0.1607040502146, 0.1578439946469], +[-0.1557283199274, 0.1579864191627], +[-0.1507554686128, 0.1581238043688], +[-0.1457854089535, 0.1582562040929], +[-0.1408180532602, 0.1583836707749], +[-0.1358533134805, 0.1585062554347], +[-0.1308911012081, 0.1586240076408], +[-0.1259313276918, 0.1587369754797], +[-0.1209739038454, 0.1588452055264], +[-0.1160187402576, 0.1589487428152], +[-0.1110657472019, 0.1590476308119], +[-0.106114834647, 0.1591419113863], +[-0.101165912268, 0.1592316247858], +[-0.09621888945644, 0.1593168096103], +[-0.09127367533227, 0.1593975027874], +[-0.08633017875487, 0.1594737395491], +[-0.08138830833483, 0.1595455534089], +[-0.07644797244587, 0.159612976141], +[-0.07150907923701, 0.159676037759], +[-0.06657153664497, 0.1597347664971], +[-0.06163525240671, 0.1597891887916], +[-0.05670013407232, 0.1598393292637], +[-0.05176608901795, 0.1598852107035], +[-0.04683302445907, 0.159926854055], +[-0.04190084746381, 0.1599642784025], +[-0.03696946496644, 0.1599975009578], +[-0.03203878378117, 0.1600265370493], +[-0.02710871061584, 0.1600514001115], +[-0.02217915208592, 0.1600721016763], +[-0.01725001472849, 0.1600886513653], +[-0.01232120501642, 0.1601010568835], +[-0.007392629372549, 0.1601093240141], +[-0.002464194183916, 0.1601134566147], +[0.002464194183916, 0.1601134566147], +[0.007392629372549, 0.1601093240141], +[0.01232120501642, 0.1601010568835], +[0.01725001472849, 0.1600886513653], +[0.02217915208592, 0.1600721016763], +[0.02710871061584, 0.1600514001115], +[0.03203878378117, 0.1600265370493], +[0.03696946496645, 0.1599975009579], +[0.04190084746379, 0.1599642784025], +[0.04683302445907, 0.159926854055], +[0.05176608901795, 0.1598852107035], +[0.05670013407232, 0.1598393292637], +[0.06163525240671, 0.1597891887916], +[0.06657153664497, 0.1597347664971], +[0.07150907923701, 0.159676037759], +[0.07644797244587, 0.159612976141], +[0.08138830833483, 0.1595455534089], +[0.08633017875487, 0.1594737395491], +[0.09127367533227, 0.1593975027874], +[0.09621888945644, 0.1593168096103], +[0.101165912268, 0.1592316247858], +[0.106114834647, 0.1591419113863], +[0.1110657472019, 0.159047630812], +[0.1160187402576, 0.1589487428152], +[0.1209739038454, 0.1588452055264], +[0.1259313276918, 0.1587369754797], +[0.1308911012081, 0.1586240076408], +[0.1358533134805, 0.1585062554347], +[0.1408180532602, 0.1583836707749], +[0.1457854089535, 0.1582562040929], +[0.1507554686128, 0.1581238043688], +[0.1557283199274, 0.1579864191627], +[0.1607040502146, 0.1578439946469], +[0.1656827464112, 0.1576964756379], +[0.1706644950649, 0.1575438056309], +[0.1756493823266, 0.1573859268329], +[0.1806374939424, 0.1572227801981], +[0.1856289152458, 0.1570543054628], +[0.1906237311502, 0.1568804411816], +[0.1956220261421, 0.1567011247637], +[0.2006238842735, 0.1565162925102], +[0.2056293891552, 0.1563258796515], +[0.2106386239506, 0.1561298203853], +[0.2156516713681, 0.1559280479157], +[0.2206686136558, 0.1557204944916], +[0.2256895325941, 0.1555070914469], +[0.2307145094905, 0.15528776924], +[0.2357436251728, 0.1550624574947], +[0.2407769599832, 0.1548310850409], +[0.2458145937723, 0.1545935799557], +[0.2508566058933, 0.1543498696057], +[0.2559030751956, 0.1540998806887], +[0.2609540800194, 0.1538435392761], +[0.2660096981892, 0.1535807708566], +[0.2710700070076, 0.1533115003785], +[0.2761350832499, 0.1530356522944], +[0.2812050031569, 0.1527531506045], +[0.2862798424294, 0.1524639189017], +[0.291359676221, 0.1521678804159], +[0.2964445791316, 0.1518649580598], +[0.3015346252008, 0.151555074474], +[0.3066298879004, 0.1512381520732], +[0.3117304401273, 0.1509141130927], +[0.3168363541957, 0.150582879635], +[0.3219477018293, 0.1502443737167], +[0.3270645541531, 0.1498985173166], +[0.3321869816846, 0.1495452324229], +[0.3373152763146, 0.1491839753546], +[-0.3344978943899, 0.154063850114], +[-0.3293732391862, 0.1544173756639], +[-0.3242545607509, 0.1547630088293], +[-0.3191415445938, 0.155101303693], +[-0.3140341187046, 0.1554323381882], +[-0.3089322104357, 0.1557561902667], +[-0.3038357465111, 0.1560729378501], +[-0.2987446530354, 0.1563826587818], +[-0.2936588555025, 0.1566854307792], +[-0.2885782788037, 0.156981331386], +[-0.2835028472356, 0.1572704379255], +[-0.2784324845081, 0.1575528274534], +[-0.2733671137514, 0.157828576712], +[-0.2683066575239, 0.1580977620834], +[-0.2632510378189, 0.1583604595446], +[-0.2582001760716, 0.1586167446217], +[-0.2531539931663, 0.1588666923453], +[-0.2481124094427, 0.1591103772056], +[-0.2430753447027, 0.1593478731086], +[-0.2380427182171, 0.1595792533319], +[-0.2330144487323, 0.1598045904814], +[-0.2279904544765, 0.1600239564485], +[-0.2229706531663, 0.1602374223672], +[-0.2179549620136, 0.160445058572], +[-0.212943297732, 0.1606469345559], +[-0.2079355765434, 0.1608431189295], +[-0.202931714185, 0.1610336793794], +[-0.197931625916, 0.1612186826283], +[-0.1929352265248, 0.161398194395], +[-0.1879424303359, 0.1615722793543], +[-0.182953151217, 0.1617410010989], +[-0.1779673025872, 0.1619044221], +[-0.1729847974236, 0.1620626036703], +[-0.16800554827, 0.162215605926], +[-0.1630294672442, 0.1623634877501], +[-0.1580564660466, 0.1625063067567], +[-0.1530864559687, 0.162644119255], +[-0.1481193479015, 0.1627769802146], +[-0.1431550523445, 0.1629049432315], +[-0.1381934794149, 0.1630280604944], +[-0.1332345388571, 0.1631463827521], +[-0.1282781400521, 0.1632599592814], +[-0.1233241920277, 0.1633688378562], +[-0.1183726034684, 0.1634730647168], +[-0.1134232827262, 0.1635726845405], +[-0.108476137831, 0.1636677404132], +[-0.1035310765019, 0.1637582738014], +[-0.09858800615808, 0.1638443245254], +[-0.09364683393062, 0.1639259307336], +[-0.08870746667418, 0.1640031288773], +[-0.083769810979, 0.1640759536875], +[-0.07883377318323, 0.1641444381511], +[-0.07389925938541, 0.1642086134904], +[-0.06896617545723, 0.1642685091411], +[-0.06403442705657, 0.1643241527338], +[-0.05910391964062, 0.1643755700751], +[-0.05417455847937, 0.1644227851306], +[-0.04924624866915, 0.1644658200083], +[-0.04431889514646, 0.1645046949447], +[-0.03939240270194, 0.1645394282902], +[-0.03446667599443, 0.1645700364973], +[-0.02954161956532, 0.1645965341093], +[-0.02461713785288, 0.1646189337504], +[-0.01969313520682, 0.1646372461174], +[-0.01476951590284, 0.1646514799719], +[-0.009846184157379, 0.1646616421347], +[-0.004923044142361, 0.1646677374813], +[0, 0.1646697689383], +[0.004923044142361, 0.1646677374813], +[0.009846184157378, 0.1646616421347], +[0.01476951590283, 0.1646514799718], +[0.01969313520681, 0.1646372461174], +[0.02461713785288, 0.1646189337504], +[0.02954161956532, 0.1645965341093], +[0.03446667599443, 0.1645700364973], +[0.03939240270194, 0.1645394282902], +[0.04431889514646, 0.1645046949447], +[0.04924624866915, 0.1644658200083], +[0.05417455847937, 0.1644227851306], +[0.05910391964062, 0.1643755700751], +[0.06403442705657, 0.1643241527338], +[0.06896617545723, 0.1642685091411], +[0.07389925938541, 0.1642086134904], +[0.07883377318323, 0.1641444381511], +[0.083769810979, 0.1640759536875], +[0.08870746667418, 0.1640031288773], +[0.09364683393062, 0.1639259307336], +[0.09858800615808, 0.1638443245254], +[0.1035310765019, 0.1637582738014], +[0.1084761378311, 0.1636677404132], +[0.1134232827262, 0.1635726845405], +[0.1183726034684, 0.1634730647168], +[0.1233241920277, 0.1633688378562], +[0.1282781400521, 0.1632599592814], +[0.1332345388571, 0.1631463827521], +[0.1381934794149, 0.1630280604944], +[0.1431550523445, 0.1629049432315], +[0.1481193479015, 0.1627769802146], +[0.1530864559687, 0.162644119255], +[0.1580564660466, 0.1625063067567], +[0.1630294672442, 0.1623634877501], +[0.16800554827, 0.162215605926], +[0.1729847974236, 0.1620626036703], +[0.1779673025872, 0.1619044221], +[0.182953151217, 0.1617410010989], +[0.1879424303359, 0.1615722793543], +[0.1929352265248, 0.161398194395], +[0.197931625916, 0.1612186826283], +[0.202931714185, 0.1610336793794], +[0.2079355765434, 0.1608431189295], +[0.212943297732, 0.1606469345559], +[0.2179549620136, 0.160445058572], +[0.2229706531663, 0.1602374223672], +[0.2279904544765, 0.1600239564485], +[0.2330144487323, 0.1598045904814], +[0.2380427182171, 0.1595792533319], +[0.2430753447027, 0.1593478731086], +[0.2481124094427, 0.1591103772056], +[0.2531539931663, 0.1588666923453], +[0.2582001760716, 0.1586167446217], +[0.2632510378189, 0.1583604595446], +[0.2683066575239, 0.1580977620834], +[0.2733671137514, 0.157828576712], +[0.2784324845081, 0.1575528274534], +[0.2835028472356, 0.1572704379255], +[0.2885782788037, 0.156981331386], +[0.2936588555025, 0.1566854307792], +[0.2987446530354, 0.1563826587818], +[0.3038357465111, 0.1560729378501], +[0.3089322104357, 0.1557561902667], +[0.3140341187046, 0.1554323381882], +[0.3191415445938, 0.155101303693], +[0.3242545607509, 0.1547630088293], +[0.3293732391862, 0.1544173756639], +[0.3344978943873, 0.1540638501162], +[-0.3316799514195, 0.1589446857552], +[-0.3265591071783, 0.159290427596], +[-0.3214443266508, 0.1596283833581], +[-0.3163352939616, 0.1599590916585], +[-0.311231935579, 0.1602826304009], +[-0.3061341773048, 0.1605990775156], +[-0.3010419442842, 0.1609085109097], +[-0.2959551610153, 0.1612110084189], +[-0.2908737513578, 0.1615066477584], +[-0.2857976385429, 0.1617955064746], +[-0.2807267451799, 0.1620776618984], +[-0.2756609932668, 0.1623531910961], +[-0.2706003041966, 0.1626221708233], +[-0.2655445987661, 0.1628846774778], +[-0.2604937971832, 0.163140787053], +[-0.2554478190747, 0.1633905750916], +[-0.2504065834933, 0.1636341166405], +[-0.2453700089255, 0.1638714862045], +[-0.2403380132981, 0.1641027577019], +[-0.235310513986, 0.1643280044194], +[-0.2302874278188, 0.1645472989681], +[-0.2252686710883, 0.1647607132391], +[-0.2202541595554, 0.1649683183604], +[-0.2152438084571, 0.1651701846538], +[-0.2102375325141, 0.1653663815917], +[-0.2052352459373, 0.1655569777552], +[-0.2002368624361, 0.1657420407923], +[-0.1952422952248, 0.1659216373763], +[-0.1902514570309, 0.1660958331649], +[-0.1852642601022, 0.1662646927603], +[-0.1802806162151, 0.1664282796684], +[-0.1753004366822, 0.1665866562606], +[-0.1703236323608, 0.1667398837338], +[-0.1653501136608, 0.1668880220733], +[-0.1603797905537, 0.1670311300145], +[-0.155412572581, 0.1671692650061], +[-0.1504483688636, 0.167302483174], +[-0.1454870881105, 0.1674308392854], +[-0.1405286386288, 0.1675543867139], +[-0.1355729283331, 0.1676731774056], +[-0.1306198647555, 0.1677872618454], +[-0.1256693550558, 0.1678966890243], +[-0.1207213060324, 0.1680015064077], +[-0.1157756241325, 0.1681017599048], +[-0.1108322154635, 0.1681974938377], +[-0.105890985804, 0.1682887509131], +[-0.100951840616, 0.1683755721935], +[-0.09601468505603, 0.1684579970702], +[-0.09107942398766, 0.1685360632369], +[-0.08614596199382, 0.1686098066645], +[-0.0812142033894, 0.168679261577], +[-0.07628405223415, 0.1687444604286], +[-0.07135541234582, 0.1688054338811], +[-0.06642818731353, 0.1688622107837], +[-0.06150228051134, 0.1689148181531], +[-0.05657759511213, 0.1689632811549], +[-0.05165403410152, 0.1690076230866], +[-0.04673150029221, 0.1690478653614], +[-0.04180989633827, 0.1690840274933], +[-0.0368891247498, 0.169116127084], +[-0.03196908790758, 0.1691441798102], +[-0.027049688078, 0.1691681994132], +[-0.02213082742804, 0.169188197689], +[-0.01721240804035, 0.1692041844803], +[-0.01229433192846, 0.1692161676695], +[-0.007376501052083, 0.1692241531731], +[-0.002458817332425, 0.1692281449379], +[0.002458817332425, 0.1692281449379], +[0.007376501052083, 0.1692241531731], +[0.01229433192846, 0.1692161676695], +[0.01721240804035, 0.1692041844803], +[0.02213082742804, 0.169188197689], +[0.027049688078, 0.1691681994132], +[0.03196908790758, 0.1691441798102], +[0.0368891247498, 0.169116127084], +[0.04180989633827, 0.1690840274933], +[0.04673150029221, 0.1690478653614], +[0.05165403410152, 0.1690076230866], +[0.05657759511213, 0.1689632811549], +[0.06150228051134, 0.1689148181531], +[0.06642818731353, 0.1688622107837], +[0.07135541234582, 0.1688054338811], +[0.07628405223415, 0.1687444604286], +[0.0812142033894, 0.168679261577], +[0.08614596199382, 0.1686098066645], +[0.09107942398766, 0.1685360632369], +[0.09601468505603, 0.1684579970702], +[0.100951840616, 0.1683755721935], +[0.1058909858041, 0.1682887509131], +[0.1108322154635, 0.1681974938377], +[0.1157756241325, 0.1681017599048], +[0.1207213060324, 0.1680015064077], +[0.1256693550558, 0.1678966890243], +[0.1306198647555, 0.1677872618454], +[0.1355729283331, 0.1676731774056], +[0.1405286386288, 0.1675543867139], +[0.1454870881105, 0.1674308392854], +[0.1504483688636, 0.167302483174], +[0.155412572581, 0.1671692650061], +[0.1603797905536, 0.1670311300145], +[0.1653501136608, 0.1668880220733], +[0.1703236323608, 0.1667398837338], +[0.1753004366822, 0.1665866562606], +[0.1802806162151, 0.1664282796684], +[0.1852642601022, 0.1662646927603], +[0.1902514570309, 0.1660958331649], +[0.1952422952248, 0.1659216373763], +[0.2002368624361, 0.1657420407923], +[0.2052352459373, 0.1655569777552], +[0.2102375325141, 0.1653663815917], +[0.2152438084571, 0.1651701846538], +[0.2202541595554, 0.1649683183604], +[0.2252686710883, 0.1647607132391], +[0.2302874278188, 0.1645472989681], +[0.235310513986, 0.1643280044194], +[0.2403380132981, 0.1641027577019], +[0.2453700089255, 0.1638714862045], +[0.2504065834933, 0.1636341166405], +[0.2554478190747, 0.1633905750916], +[0.2604937971832, 0.163140787053], +[0.2655445987661, 0.1628846774778], +[0.2706003041966, 0.1626221708233], +[0.2756609932668, 0.1623531910961], +[0.2807267451799, 0.1620776618984], +[0.2857976385429, 0.1617955064746], +[0.2908737513579, 0.1615066477583], +[0.2959551610153, 0.1612110084189], +[0.3010419442842, 0.1609085109097], +[0.3061341773048, 0.1605990775156], +[0.311231935579, 0.1602826304009], +[0.3163352939616, 0.1599590916585], +[0.3214443266508, 0.1596283833581], +[0.3265591071783, 0.159290427596], +[0.3316799514169, 0.1589446857574], +[-0.3288615553113, 0.163826300127], +[-0.3237446749312, 0.164164233369], +[-0.3186339402781, 0.1644944873307], +[-0.3135290375166, 0.1648175853561], +[-0.3084298915658, 0.1651336053683], +[-0.3033364266503, 0.1654426253235], +[-0.2982485663106, 0.1657447231617], +[-0.293166233413, 0.1660399767562], +[-0.2880893501594, 0.1663284638652], +[-0.2830178380966, 0.1666102620824], +[-0.2779516181256, 0.1668854487885], +[-0.2728906105101, 0.1671541011029], +[-0.2678347348853, 0.1674162958357], +[-0.2627839102665, 0.1676721094399], +[-0.2577380550567, 0.1679216179643], +[-0.2526970870555, 0.1681648970064], +[-0.2476609234664, 0.1684020216658], +[-0.2426294809048, 0.1686330664977], +[-0.2376026754057, 0.1688581054672], +[-0.2325804224318, 0.1690772119035], +[-0.2275626368802, 0.1692904584547], +[-0.2225492330912, 0.169497917043], +[-0.2175401248548, 0.1696996588202], +[-0.2125352254191, 0.1698957541238], +[-0.2075344474976, 0.1700862724329], +[-0.202537703277, 0.1702712823256], +[-0.1975449044255, 0.1704508514358], +[-0.1925559620998, 0.170625046411], +[-0.1875707869539, 0.1707939328706], +[-0.1825892891472, 0.1709575753645], +[-0.1776113783524, 0.1711160373324], +[-0.1726369637647, 0.1712693810635], +[-0.1676659541097, 0.1714176676567], +[-0.1626982576529, 0.171560956982], +[-0.1577337822085, 0.1716993076413], +[-0.1527724351488, 0.1718327769316], +[-0.1478141234138, 0.1719614208071], +[-0.1428587535208, 0.1720852938428], +[-0.1379062315744, 0.1722044491995], +[-0.1329564632772, 0.1723189385881], +[-0.1280093539399, 0.1724288122361], +[-0.1230648084921, 0.1725341188539], +[-0.1181227314939, 0.1726349056024], +[-0.1131830271467, 0.1727312180617], +[-0.1082455993049, 0.1728231002002], +[-0.1033103514882, 0.172910594345], +[-0.09837718689332, 0.1729937411533], +[-0.09344600840678, 0.1730725795844], +[-0.08851671861746, 0.1731471468737], +[-0.08358921982959, 0.1732174785061], +[-0.0786634140761, 0.1732836081925], +[-0.07373920313203, 0.1733455678459], +[-0.06881648852835, 0.1734033875597], +[-0.06389517156592, 0.1734570955859], +[-0.05897515332972, 0.1735067183164], +[-0.05405633470332, 0.1735522802635], +[-0.04913861638348, 0.1735938040433], +[-0.04422189889501, 0.1736313103594], +[-0.03930608260585, 0.1736648179884], +[-0.03439106774219, 0.1736943437667], +[-0.02947675440385, 0.1737199025779], +[-0.02456304257978, 0.1737415073432], +[-0.01964983216366, 0.1737591690114], +[-0.01473702296961, 0.1737728965511], +[-0.009824514747981, 0.1737826969449], +[-0.004912207201266, 0.1737885751838], +[-5.477630886633e-14, 0.1737905342638], +[0.004912207201267, 0.1737885751838], +[0.009824514747981, 0.1737826969449], +[0.01473702296961, 0.1737728965511], +[0.01964983216366, 0.1737591690114], +[0.02456304257978, 0.1737415073432], +[0.02947675440385, 0.1737199025779], +[0.03439106774219, 0.1736943437667], +[0.03930608260585, 0.1736648179884], +[0.04422189889501, 0.1736313103594], +[0.04913861638348, 0.1735938040433], +[0.05405633470332, 0.1735522802635], +[0.05897515332972, 0.1735067183164], +[0.06389517156592, 0.1734570955859], +[0.06881648852835, 0.1734033875597], +[0.07373920313203, 0.1733455678459], +[0.0786634140761, 0.1732836081925], +[0.08358921982959, 0.1732174785061], +[0.08851671861746, 0.1731471468737], +[0.09344600840678, 0.1730725795844], +[0.09837718689328, 0.1729937411532], +[0.1033103514882, 0.172910594345], +[0.1082455993049, 0.1728231002002], +[0.1131830271467, 0.1727312180617], +[0.1181227314939, 0.1726349056024], +[0.1230648084921, 0.1725341188539], +[0.1280093539399, 0.1724288122361], +[0.1329564632772, 0.1723189385881], +[0.1379062315744, 0.1722044491995], +[0.1428587535208, 0.1720852938428], +[0.1478141234138, 0.1719614208071], +[0.1527724351489, 0.1718327769317], +[0.1577337822085, 0.1716993076413], +[0.1626982576529, 0.171560956982], +[0.1676659541097, 0.1714176676567], +[0.1726369637647, 0.1712693810635], +[0.1776113783524, 0.1711160373324], +[0.1825892891472, 0.1709575753645], +[0.1875707869539, 0.1707939328706], +[0.1925559620998, 0.170625046411], +[0.1975449044255, 0.1704508514358], +[0.2025377032769, 0.1702712823256], +[0.2075344474976, 0.1700862724329], +[0.2125352254191, 0.1698957541238], +[0.2175401248548, 0.1696996588202], +[0.2225492330912, 0.169497917043], +[0.2275626368802, 0.1692904584547], +[0.2325804224318, 0.1690772119035], +[0.2376026754057, 0.1688581054672], +[0.2426294809048, 0.1686330664977], +[0.2476609234664, 0.1684020216658], +[0.2526970870555, 0.1681648970064], +[0.2577380550567, 0.1679216179643], +[0.2627839102665, 0.1676721094399], +[0.2678347348853, 0.1674162958357], +[0.2728906105101, 0.1671541011029], +[0.2779516181256, 0.1668854487885], +[0.2830178380966, 0.1666102620824], +[0.2880893501594, 0.1663284638652], +[0.293166233413, 0.1660399767562], +[0.2982485663106, 0.1657447231617], +[0.3033364266503, 0.1654426253235], +[0.3084298915658, 0.1651336053683], +[0.3135290375166, 0.1648175853561], +[0.3186339402781, 0.1644944873307], +[0.3237446749312, 0.164164233369], +[0.3288615553087, 0.1638263001291], +[-0.3260428195966, 0.1687084973728], +[-0.320930031661, 0.1690386382729], +[-0.315823490032, 0.1693611673119], +[-0.3107228628456, 0.1696766326631], +[-0.3056280734446, 0.1699851123171], +[-0.3005390444499, 0.1702866843039], +[-0.295455697772, 0.1705814266423], +[-0.2903779546211, 0.1708694172894], +[-0.2853057355179, 0.1711507340908], +[-0.2802389603021, 0.1714254547314], +[-0.2751775481441, 0.1716936566844], +[-0.2701214175527, 0.171955417164], +[-0.2650704863847, 0.1722108130754], +[-0.260024671854, 0.1724599209667], +[-0.25498389054, 0.1727028169808], +[-0.2499480583965, 0.1729395768072], +[-0.2449170907596, 0.173170275635], +[-0.2398909023573, 0.1733949881047], +[-0.2348694073156, 0.1736137882626], +[-0.2298525191686, 0.1738267495133], +[-0.2248401508657, 0.174033944574], +[-0.2198322147799, 0.1742354454284], +[-0.214828622716, 0.1744313232817], +[-0.2098292859185, 0.1746216485151], +[-0.20483411508, 0.1748064906417], +[-0.1998430203494, 0.1749859182621], +[-0.1948559113399, 0.1751599990206], +[-0.1898726971382, 0.1753287995623], +[-0.1848932863122, 0.1754923854898], +[-0.1799175869201, 0.1756508213218], +[-0.1749455065194, 0.1758041704506], +[-0.1699769521755, 0.1759524951013], +[-0.1650118304714, 0.1760958562915], +[-0.1600500475166, 0.176234313791], +[-0.1550915089571, 0.1763679260825], +[-0.1501361199852, 0.1764967503234], +[-0.1451837853494, 0.1766208423075], +[-0.1402344093648, 0.1767402564277], +[-0.1352878959239, 0.1768550456402], +[-0.130344148507, 0.176965261428], +[-0.1254030701938, 0.1770709537669], +[-0.1204645636744, 0.1771721710909], +[-0.1155285312614, 0.1772689602596], +[-0.1105948749014, 0.1773613665257], +[-0.1056634961872, 0.177449433504], +[-0.1007342963709, 0.1775332031412], +[-0.09580717637614, 0.1776127156868], +[-0.09088203681124, 0.1776880096647], +[-0.08595877798279, 0.1777591218466], +[-0.08103729990896, 0.1778260872255], +[-0.07611750233372, 0.1778889389917], +[-0.07119928474066, 0.1779477085086], +[-0.06628254636759, 0.1780024252906], +[-0.06136718622105, 0.1780531169822], +[-0.05645310309126, 0.1780998093377], +[-0.05154019556717, 0.1781425262029], +[-0.04662836205173, 0.1781812894982], +[-0.04171750077742, 0.1782161192021], +[-0.03680750982189, 0.1782470333373], +[-0.03189828712382, 0.178274047957], +[-0.02698973049887, 0.1782971771338], +[-0.02208173765584, 0.178316432949], +[-0.01717420621288, 0.178331825484], +[-0.01226703371386, 0.1783433628127], +[-0.007360117644749, 0.1783510509959], +[-0.00245335545016, 0.1783548940764], +[0.00245335545016, 0.1783548940764], +[0.00736011764475, 0.1783510509959], +[0.01226703371386, 0.1783433628127], +[0.01717420621288, 0.178331825484], +[0.02208173765584, 0.178316432949], +[0.02698973049887, 0.1782971771338], +[0.03189828712382, 0.178274047957], +[0.03680750982189, 0.1782470333373], +[0.04171750077742, 0.1782161192021], +[0.04662836205173, 0.1781812894982], +[0.05154019556717, 0.1781425262029], +[0.05645310309126, 0.1780998093377], +[0.06136718622105, 0.1780531169822], +[0.06628254636759, 0.1780024252906], +[0.07119928474066, 0.1779477085086], +[0.07611750233372, 0.1778889389917], +[0.08103729990896, 0.1778260872255], +[0.08595877798275, 0.1777591218465], +[0.09088203681124, 0.1776880096647], +[0.09580717637614, 0.1776127156868], +[0.1007342963709, 0.1775332031412], +[0.1056634961872, 0.177449433504], +[0.1105948749014, 0.1773613665257], +[0.1155285312614, 0.1772689602596], +[0.1204645636744, 0.1771721710909], +[0.1254030701938, 0.1770709537669], +[0.130344148507, 0.176965261428], +[0.1352878959239, 0.1768550456402], +[0.1402344093648, 0.1767402564277], +[0.1451837853494, 0.1766208423075], +[0.1501361199852, 0.1764967503234], +[0.1550915089571, 0.1763679260825], +[0.1600500475166, 0.176234313791], +[0.1650118304714, 0.1760958562915], +[0.1699769521755, 0.1759524951013], +[0.1749455065194, 0.1758041704506], +[0.1799175869201, 0.1756508213218], +[0.1848932863122, 0.1754923854898], +[0.1898726971382, 0.1753287995623], +[0.1948559113399, 0.1751599990206], +[0.1998430203494, 0.1749859182621], +[0.20483411508, 0.1748064906417], +[0.2098292859185, 0.1746216485151], +[0.214828622716, 0.1744313232817], +[0.2198322147799, 0.1742354454284], +[0.2248401508657, 0.174033944574], +[0.2298525191686, 0.1738267495133], +[0.2348694073156, 0.1736137882626], +[0.2398909023573, 0.1733949881047], +[0.2449170907598, 0.1731702756349], +[0.2499480583965, 0.1729395768072], +[0.25498389054, 0.1727028169808], +[0.260024671854, 0.1724599209667], +[0.2650704863847, 0.1722108130754], +[0.2701214175527, 0.171955417164], +[0.2751775481441, 0.1716936566844], +[0.2802389603021, 0.1714254547314], +[0.2853057355177, 0.1711507340909], +[0.2903779546211, 0.1708694172894], +[0.295455697772, 0.1705814266423], +[0.3005390444499, 0.1702866843039], +[0.3056280734446, 0.1699851123171], +[0.3107228628456, 0.1696766326631], +[0.315823490032, 0.1693611673119], +[0.320930031661, 0.1690386382729], +[0.3260428195937, 0.168708497375], +[-0.3232235417858, 0.1735916567555], +[-0.3181152665459, 0.1739134877097], +[-0.3130130643027, 0.1742282699755], +[-0.3079168575553, 0.1745360815627], +[-0.3028265680432, 0.1748370005775], +[-0.2977421167584, 0.1751311051707], +[-0.2926634239565, 0.1754184734865], +[-0.2875904091681, 0.1756991836109], +[-0.282522991209, 0.1759733135218], +[-0.2774610881907, 0.1762409410378], +[-0.2724046175309, 0.176502143768], +[-0.2673534959627, 0.1767569990624], +[-0.2623076395447, 0.1770055839619], +[-0.2572669636699, 0.1772479751491], +[-0.2522313830754, 0.1774842488992], +[-0.2472008118511, 0.1777144810311], +[-0.2421751634486, 0.1779387468592], +[-0.2371543506901, 0.178157121145], +[-0.2321382857771, 0.1783696780492], +[-0.2271268802989, 0.1785764910849], +[-0.2221200452414, 0.1787776330696], +[-0.2171176909954, 0.178973176079], +[-0.2121197273654, 0.1791631914006], +[-0.207126063578, 0.1793477494876], +[-0.2021366082908, 0.1795269199134], +[-0.197151269601, 0.1797007713264], +[-0.192169955054, 0.1798693714055], +[-0.1871925716528, 0.180032786816], +[-0.1822190258665, 0.1801910831655], +[-0.1772492236398, 0.1803443249612], +[-0.1722830704023, 0.180492575567], +[-0.1673204710781, 0.1806358971615], +[-0.1623613300953, 0.1807743506969], +[-0.1574055513961, 0.1809079958575], +[-0.1524530384469, 0.1810368910203], +[-0.1475036942487, 0.181161093215], +[-0.1425574213478, 0.1812806580855], +[-0.1376141218464, 0.1813956398519], +[-0.132673697414, 0.1815060912735], +[-0.1277360492989, 0.1816120636119], +[-0.1228010783394, 0.1817136065962], +[-0.1178686849764, 0.1818107683876], +[-0.1129387692652, 0.1819035955465], +[-0.1080112308882, 0.1819921329992], +[-0.1030859691678, 0.1820764240065], +[-0.09816288307923, 0.1821565101327], +[-0.09324187126446, 0.1822324312163], +[-0.08832283204541, 0.1823042253412], +[-0.08340566343819, 0.1823719288097], +[-0.07849026316726, 0.1824355761157], +[-0.07357652868001, 0.1824951999203], +[-0.06866435716149, 0.1825508310276], +[-0.06375364554952, 0.1826024983623], +[-0.05884429054989, 0.1826502289488], +[-0.05393618865198, 0.1826940478908], +[-0.04902923614444, 0.1827339783532], +[-0.04412332913113, 0.1827700415448], +[-0.03921836354734, 0.1828022567026], +[-0.03431423517604, 0.1828306410773], +[-0.02941083966442, 0.1828552099208], +[-0.02450807254054, 0.1828759764746], +[-0.01960582923003, 0.1828929519598], +[-0.01470400507308, 0.1829061455688], +[-0.009802495341338, 0.1829155644586], +[-0.00490119525502, 0.1829212137451], +[-5.280181401185e-13, 0.1829230964992], +[0.00490119525502, 0.1829212137451], +[0.009802495341338, 0.1829155644586], +[0.01470400507308, 0.1829061455688], +[0.01960582923003, 0.1828929519598], +[0.02450807254054, 0.1828759764746], +[0.02941083966442, 0.1828552099208], +[0.03431423517604, 0.1828306410773], +[0.03921836354734, 0.1828022567026], +[0.04412332913113, 0.1827700415448], +[0.04902923614444, 0.1827339783532], +[0.05393618865198, 0.1826940478908], +[0.05884429054989, 0.1826502289488], +[0.06375364554952, 0.1826024983623], +[0.06866435716149, 0.1825508310276], +[0.07357652868001, 0.1824951999203], +[0.07849026316726, 0.1824355761157], +[0.08340566343819, 0.1823719288097], +[0.08832283204541, 0.1823042253412], +[0.09324187126446, 0.1822324312163], +[0.09816288307923, 0.1821565101327], +[0.1030859691678, 0.1820764240065], +[0.1080112308882, 0.1819921329992], +[0.1129387692652, 0.1819035955465], +[0.1178686849764, 0.1818107683876], +[0.1228010783394, 0.1817136065962], +[0.1277360492989, 0.1816120636119], +[0.132673697414, 0.1815060912735], +[0.1376141218464, 0.1813956398519], +[0.1425574213478, 0.1812806580855], +[0.1475036942487, 0.181161093215], +[0.1524530384469, 0.1810368910203], +[0.1574055513961, 0.1809079958575], +[0.1623613300953, 0.1807743506969], +[0.1673204710781, 0.1806358971615], +[0.1722830704023, 0.180492575567], +[0.1772492236398, 0.1803443249612], +[0.1822190258665, 0.1801910831655], +[0.1871925716528, 0.180032786816], +[0.192169955054, 0.1798693714055], +[0.197151269601, 0.1797007713264], +[0.2021366082908, 0.1795269199134], +[0.207126063578, 0.1793477494876], +[0.2121197273654, 0.1791631914006], +[0.2171176909954, 0.178973176079], +[0.2221200452414, 0.1787776330696], +[0.2271268802989, 0.1785764910849], +[0.2321382857771, 0.1783696780492], +[0.2371543506901, 0.178157121145], +[0.2421751634486, 0.1779387468592], +[0.2472008118511, 0.1777144810311], +[0.2522313830754, 0.1774842488992], +[0.2572669636699, 0.1772479751491], +[0.2623076395447, 0.1770055839619], +[0.2673534959627, 0.1767569990624], +[0.2724046175309, 0.176502143768], +[0.2774610881907, 0.1762409410378], +[0.282522991209, 0.1759733135218], +[0.2875904091681, 0.1756991836109], +[0.2926634239565, 0.1754184734865], +[0.2977421167584, 0.1751311051707], +[0.3028265680432, 0.1748370005775], +[0.3079168575553, 0.1745360815627], +[0.3130130643027, 0.1742282699755], +[0.3181152665459, 0.1739134877097], +[0.3232235417858, 0.1735916567555], +[-0.3204043394824, 0.1784746568726], +[-0.3153004687426, 0.1787886271639], +[-0.3102027514877, 0.1790956420748], +[-0.3051111092879, 0.179395780115], +[-0.3000254622541, 0.1796891195541], +[-0.2949457297241, 0.1799757387106], +[-0.289871830275, 0.1802557158999], +[-0.2848036817341, 0.1805291293825], +[-0.2797412011902, 0.1807960573122], +[-0.2746843050046, 0.181056577685], +[-0.2696329088214, 0.1813107682879], +[-0.2645869275778, 0.1815587066479], +[-0.2595462755142, 0.1818004699819], +[-0.2545108661842, 0.182036135146], +[-0.2494806124637, 0.1822657785859], +[-0.2444554265608, 0.1824894762867], +[-0.2394352200251, 0.1827073037242], +[-0.2344199037568, 0.1829193358152], +[-0.2294093880157, 0.1831256468689], +[-0.2244035824308, 0.1833263105389], +[-0.2194023960085, 0.1835213997744], +[-0.2144057371424, 0.1837109867731], +[-0.209413513622, 0.1838951429336], +[-0.2044256326414, 0.1840739388083], +[-0.1994420008092, 0.1842474440573], +[-0.1944625241569, 0.184415727402], +[-0.1894871081484, 0.1845788565795], +[-0.1845156576901, 0.1847368982974], +[-0.179548077139, 0.1848899181895], +[-0.1745842703136, 0.1850379807711], +[-0.1696241405031, 0.1851811493961], +[-0.1646675904777, 0.1853194862136], +[-0.1597145224987, 0.1854530521257], +[-0.1547648383291, 0.1855819067457], +[-0.1498184392439, 0.1857061083572], +[-0.1448752260414, 0.1858257138739], +[-0.1399350990542, 0.1859407787998], +[-0.1349979581605, 0.1860513571907], +[-0.1300637027963, 0.1861575016158], +[-0.1251322319665, 0.1862592631213], +[-0.1202034442581, 0.1863566911936], +[-0.1152772378521, 0.1864498337243], +[-0.1103535105367, 0.1865387369757], +[-0.1054321597202, 0.1866234455479], +[-0.1005130824446, 0.186704002346], +[-0.09559617539957, 0.1867804485493], +[-0.09068133493587, 0.1868528235813], +[-0.08576845708026, 0.1869211650803], +[-0.08085743754987, 0.1869855088721], +[-0.07594817176715, 0.1870458889435], +[-0.07104055487505, 0.1871023374168], +[-0.0661344817525, 0.187154884526], +[-0.06122984703007, 0.1872035585941], +[-0.05632654510597, 0.1872483860121], +[-0.05142447016224, 0.1872893912186], +[-0.04652351618116, 0.1873265966819], +[-0.04162357696189, 0.1873600228826], +[-0.03672454613728, 0.1873896882979], +[-0.03182631719092, 0.1874156093882], +[-0.02692878347425, 0.1874378005838], +[-0.02203183822392, 0.1874562742741], +[-0.0171353745792, 0.1874710407984], +[-0.01223928559957, 0.1874821084374], +[-0.00734346428233, 0.1874894834075], +[-0.002447803580318, 0.1874931698554], +[0.002447803580318, 0.1874931698554], +[0.00734346428233, 0.1874894834075], +[0.01223928559957, 0.1874821084374], +[0.0171353745792, 0.1874710407984], +[0.02203183822392, 0.1874562742741], +[0.02692878347425, 0.1874378005838], +[0.03182631719092, 0.1874156093882], +[0.03672454613728, 0.1873896882979], +[0.04162357696189, 0.1873600228826], +[0.04652351618116, 0.1873265966819], +[0.05142447016224, 0.1872893912186], +[0.05632654510597, 0.1872483860121], +[0.06122984703007, 0.1872035585941], +[0.0661344817525, 0.187154884526], +[0.07104055487505, 0.1871023374168], +[0.07594817176715, 0.1870458889435], +[0.08085743754987, 0.1869855088721], +[0.08576845708026, 0.1869211650803], +[0.09068133493587, 0.1868528235813], +[0.09559617539957, 0.1867804485493], +[0.1005130824446, 0.186704002346], +[0.1054321597202, 0.1866234455479], +[0.1103535105367, 0.1865387369757], +[0.1152772378521, 0.1864498337243], +[0.1202034442581, 0.1863566911936], +[0.1251322319665, 0.1862592631213], +[0.1300637027963, 0.1861575016158], +[0.1349979581605, 0.1860513571907], +[0.1399350990542, 0.1859407787998], +[0.1448752260414, 0.1858257138739], +[0.1498184392439, 0.1857061083572], +[0.1547648383291, 0.1855819067457], +[0.1597145224987, 0.1854530521257], +[0.1646675904777, 0.1853194862136], +[0.1696241405031, 0.1851811493961], +[0.1745842703136, 0.1850379807711], +[0.179548077139, 0.1848899181895], +[0.1845156576901, 0.1847368982974], +[0.1894871081486, 0.1845788565795], +[0.1944625241569, 0.184415727402], +[0.1994420008092, 0.1842474440573], +[0.2044256326414, 0.1840739388083], +[0.209413513622, 0.1838951429336], +[0.2144057371424, 0.1837109867731], +[0.2194023960085, 0.1835213997744], +[0.2244035824308, 0.1833263105389], +[0.2294093880157, 0.1831256468689], +[0.2344199037568, 0.1829193358152], +[0.2394352200251, 0.1827073037242], +[0.2444554265608, 0.1824894762867], +[0.2494806124637, 0.1822657785859], +[0.2545108661842, 0.182036135146], +[0.2595462755142, 0.1818004699819], +[0.2645869275778, 0.1815587066479], +[0.2696329088214, 0.1813107682879], +[0.2746843050046, 0.181056577685], +[0.2797412011902, 0.1807960573122], +[0.2848036817341, 0.1805291293825], +[0.289871830275, 0.1802557158999], +[0.2949457297241, 0.1799757387106], +[0.3000254622541, 0.1796891195541], +[0.3051111092879, 0.179395780115], +[0.3102027514877, 0.1790956420748], +[0.3153004687426, 0.1787886271639], +[0.3204043397259, 0.1784746567062], +[-0.317585048657, 0.1833578133327], +[-0.3124857274029, 0.1836639021743], +[-0.3073926400075, 0.1839631304149], +[-0.3023057057377, 0.1842555764294], +[-0.2972248430503, 0.1845413186983], +[-0.2921499696052, 0.1848204357548], +[-0.287081002277, 0.1850930061314], +[-0.2820178571673, 0.1853591083075], +[-0.2769604496159, 0.1856188206572], +[-0.2719086942125, 0.1858722213968], +[-0.2668625048072, 0.186119388533], +[-0.2618217945214, 0.186360399811], +[-0.256786475758, 0.1865953326636], +[-0.251756460212, 0.1868242641592], +[-0.2467316588803, 0.1870472709519], +[-0.2417119820716, 0.1872644292298], +[-0.2366973394161, 0.1874758146655], +[-0.2316876398751, 0.1876815023656], +[-0.2266827917507, 0.1878815668213], +[-0.2216827026953, 0.1880760818585], +[-0.2166872797206, 0.1882651205893], +[-0.2116964292077, 0.1884487553629], +[-0.2067100569159, 0.1886270577174], +[-0.2017280679928, 0.1888000983319], +[-0.1967503669832, 0.1889679469788], +[-0.1917768578393, 0.1891306724771], +[-0.1868074439298, 0.1892883426452], +[-0.1818420280504, 0.1894410242554], +[-0.1768805124333, 0.1895887829878], +[-0.1719227987575, 0.1897316833854], +[-0.166968788159, 0.1898697888097], +[-0.1620183812417, 0.1900031613966], +[-0.1570714780873, 0.1901318620133], +[-0.1521279782674, 0.1902559502157], +[-0.1471877808535, 0.1903754842063], +[-0.1422507844294, 0.1904905207933], +[-0.1373168871022, 0.1906011153502], +[-0.1323859865148, 0.1907073217761], +[-0.1274579798577, 0.190809192457], +[-0.1225327638819, 0.190906778228], +[-0.1176102349116, 0.1910001283368], +[-0.1126902888575, 0.1910892904069], +[-0.1077728212299, 0.1911743104036], +[-0.1028577271528, 0.1912552325995], +[-0.09794490137797, 0.191332099542], +[-0.09303423829902, 0.1914049520217], +[-0.08812563196642, 0.1914738290415], +[-0.0832189761023, 0.1915387677878], +[-0.07831416411582, 0.1915998036023], +[-0.07341108911871, 0.191656969955], +[-0.06850964394111, 0.1917102984189], +[-0.06360972114776, 0.191759818646], +[-0.05871121305435, 0.1918055583445], +[-0.0538140117442, 0.1918475432574], +[-0.04891800908514, 0.1918857971426], +[-0.04402309674663, 0.1919203417548], +[-0.03912916621707, 0.1919511968284], +[-0.03423610882137, 0.191978380062], +[-0.02934381573861, 0.192001907105], +[-0.02445217801994, 0.192021791545], +[-0.01956108660654, 0.1920380448974], +[-0.01467043234782, 0.1920506765962], +[-0.009780106019593, 0.1920596939866], +[-0.004889998342421, 0.1920651023194], +[1.984048861845e-13, 0.1920669047466], +[0.004889998342421, 0.1920651023194], +[0.009780106019593, 0.1920596939866], +[0.01467043234782, 0.1920506765962], +[0.01956108660654, 0.1920380448974], +[0.02445217801994, 0.192021791545], +[0.02934381573861, 0.192001907105], +[0.03423610882137, 0.191978380062], +[0.03912916621707, 0.1919511968284], +[0.04402309674663, 0.1919203417548], +[0.04891800908514, 0.1918857971426], +[0.0538140117442, 0.1918475432574], +[0.05871121305435, 0.1918055583445], +[0.06360972114776, 0.191759818646], +[0.06850964394111, 0.1917102984189], +[0.07341108911871, 0.191656969955], +[0.07831416411582, 0.1915998036023], +[0.0832189761023, 0.1915387677878], +[0.08812563196642, 0.1914738290415], +[0.09303423829902, 0.1914049520217], +[0.09794490137797, 0.191332099542], +[0.1028577271528, 0.1912552325995], +[0.1077728212299, 0.1911743104036], +[0.1126902888575, 0.1910892904069], +[0.1176102349116, 0.1910001283368], +[0.1225327638819, 0.190906778228], +[0.1274579798577, 0.190809192457], +[0.1323859865148, 0.1907073217761], +[0.1373168871022, 0.1906011153502], +[0.1422507844294, 0.1904905207933], +[0.1471877808535, 0.1903754842063], +[0.1521279782674, 0.1902559502157], +[0.1570714780873, 0.1901318620133], +[0.1620183812417, 0.1900031613966], +[0.166968788159, 0.1898697888097], +[0.1719227987575, 0.1897316833854], +[0.1768805124333, 0.1895887829878], +[0.1818420280504, 0.1894410242554], +[0.1868074439298, 0.1892883426452], +[0.1917768578393, 0.1891306724771], +[0.1967503669832, 0.1889679469788], +[0.2017280679928, 0.1888000983319], +[0.2067100569159, 0.1886270577174], +[0.2116964292077, 0.1884487553629], +[0.2166872797206, 0.1882651205893], +[0.2216827026953, 0.1880760818585], +[0.2266827917507, 0.1878815668213], +[0.2316876398751, 0.1876815023656], +[0.2366973394161, 0.1874758146655], +[0.2417119820716, 0.1872644292298], +[0.2467316588803, 0.1870472709519], +[0.251756460212, 0.1868242641592], +[0.256786475758, 0.1865953326636], +[0.2618217945214, 0.186360399811], +[0.2668625048072, 0.186119388533], +[0.2719086942125, 0.1858722213968], +[0.2769604496159, 0.1856188206572], +[0.2820178571673, 0.1853591083075], +[0.287081002277, 0.1850930061314], +[0.2921499696052, 0.1848204357548], +[0.2972248430503, 0.1845413186983], +[0.3023057057377, 0.1842555764294], +[0.3073926400075, 0.1839631304149], +[0.3124857274029, 0.1836639021743], +[0.317585048657, 0.1833578133327], +[-0.3147657564635, 0.1882409691324], +[-0.3096711316903, 0.1885391583056], +[-0.3045828183227, 0.1888305818236], +[-0.2995007346671, 0.1891153186354], +[-0.2944247975021, 0.1893934474799], +[-0.2893549227855, 0.1896650471513], +[-0.284291025667, 0.1899301964447], +[-0.2792330205, 0.1901889741035], +[-0.2741808208541, 0.1904414587656], +[-0.2691343395265, 0.1906877289104], +[-0.264093488553, 0.190927862806], +[-0.2590581792196, 0.1911619384568], +[-0.2540283220729, 0.1913900335509], +[-0.249003826931, 0.1916122254082], +[-0.2439846028934, 0.1918285909282], +[-0.238970558352, 0.1920392065389], +[-0.2339616010006, 0.192244148145], +[-0.2289576378448, 0.1924434910772], +[-0.2239585752133, 0.1926373100412], +[-0.2189643187653, 0.1928256790677], +[-0.2139747735027, 0.1930086714619], +[-0.2089898437786, 0.1931863597541], +[-0.2040094333075, 0.1933588156499], +[-0.1990334451753, 0.1935261099819], +[-0.1940617818492, 0.1936883126605], +[-0.1890943451874, 0.1938454926263], +[-0.1841310364497, 0.1939977178022], +[-0.1791717563075, 0.1941450550463], +[-0.1742164048544, 0.1942875701054], +[-0.1692648816167, 0.1944253275688], +[-0.1643170855641, 0.194558390823], +[-0.1593729151207, 0.1946868220067], +[-0.1544322681765, 0.1948106819666], +[-0.1494950420985, 0.194930030214], +[-0.1445611337425, 0.1950449248821], +[-0.1396304394652, 0.1951554226836], +[-0.1347028551363, 0.1952615788701], +[-0.129778276151, 0.1953634471911], +[-0.1248565974428, 0.1954610798549], +[-0.1199377134971, 0.1955545274902], +[-0.115021518364, 0.1956438391079], +[-0.1101079056721, 0.1957290620652], +[-0.1051967686433, 0.1958102420296], +[-0.1002880001062, 0.1958874229447], +[-0.09538149251149, 0.1959606469969], +[-0.09047713794683, 0.1960299545831], +[-0.08557482815204, 0.1960953842798], +[-0.0806744545349, 0.1961569728139], +[-0.07577590818704, 0.1962147550336], +[-0.07087907990028, 0.196268763882], +[-0.06598386018313, 0.1963190303711], +[-0.06109013927761, 0.1963655835577], +[-0.05619780717643, 0.1964084505207], +[-0.05130675364029, 0.1964476563394], +[-0.0464168682155, 0.1964832240742], +[-0.04152804025185, 0.1965151747481], +[-0.03664015892055, 0.1965435273297], +[-0.03175311323271, 0.1965682987188], +[-0.02686679205746, 0.1965895037322], +[-0.02198108414075, 0.1966071550922], +[-0.017095878124, 0.1966212634166], +[-0.01221106256293, 0.1966318372095], +[-0.007326525946517, 0.1966388828554], +[-0.00244215671601, 0.1966424046131], +[0.00244215671601, 0.1966424046131], +[0.007326525946517, 0.1966388828554], +[0.01221106256293, 0.1966318372095], +[0.017095878124, 0.1966212634166], +[0.02198108414075, 0.1966071550922], +[0.02686679205746, 0.1965895037322], +[0.03175311323271, 0.1965682987188], +[0.03664015892055, 0.1965435273297], +[0.04152804025185, 0.1965151747481], +[0.0464168682155, 0.1964832240742], +[0.05130675364029, 0.1964476563394], +[0.05619780717643, 0.1964084505207], +[0.06109013927761, 0.1963655835577], +[0.06598386018313, 0.1963190303711], +[0.07087907990028, 0.196268763882], +[0.07577590818704, 0.1962147550336], +[0.0806744545349, 0.1961569728139], +[0.08557482815204, 0.1960953842798], +[0.09047713794683, 0.1960299545831], +[0.09538149251149, 0.1959606469969], +[0.1002880001062, 0.1958874229447], +[0.1051967686433, 0.1958102420296], +[0.1101079056721, 0.1957290620652], +[0.115021518364, 0.1956438391079], +[0.1199377134971, 0.1955545274902], +[0.1248565974428, 0.1954610798549], +[0.1297782761509, 0.1953634471911], +[0.1347028551363, 0.1952615788701], +[0.1396304394652, 0.1951554226836], +[0.1445611337425, 0.1950449248821], +[0.1494950420985, 0.194930030214], +[0.1544322681765, 0.1948106819666], +[0.1593729151207, 0.1946868220067], +[0.1643170855641, 0.194558390823], +[0.1692648816167, 0.1944253275688], +[0.1742164048544, 0.1942875701054], +[0.1791717563075, 0.1941450550463], +[0.1841310364497, 0.1939977178022], +[0.1890943451874, 0.1938454926263], +[0.1940617818492, 0.1936883126605], +[0.1990334451753, 0.1935261099819], +[0.2040094333075, 0.1933588156499], +[0.2089898437786, 0.1931863597541], +[0.2139747735027, 0.1930086714619], +[0.2189643187653, 0.1928256790677], +[0.2239585752133, 0.1926373100412], +[0.228957637845, 0.1924434910771], +[0.2339616010006, 0.192244148145], +[0.238970558352, 0.1920392065389], +[0.2439846028934, 0.1918285909282], +[0.249003826931, 0.1916122254082], +[0.2540283220729, 0.1913900335509], +[0.2590581792196, 0.1911619384568], +[0.264093488553, 0.190927862806], +[0.2691343395265, 0.1906877289104], +[0.2741808208541, 0.1904414587656], +[0.2792330205, 0.1901889741035], +[0.284291025667, 0.1899301964447], +[0.2893549227855, 0.1896650471513], +[0.2944247975021, 0.1893934474799], +[0.2995007346671, 0.1891153186354], +[0.3045828183227, 0.1888305818236], +[0.3096711316903, 0.1885391583056], +[0.3147657571573, 0.1882409694514], +[-0.3119465552465, 0.1931239691695], +[-0.306856770796, 0.1934142411193], +[-0.3017733749499, 0.1936978431234], +[-0.2966962839234, 0.1939748548551], +[-0.291625412793, 0.1942453553592], +[-0.2865606757915, 0.1945094237368], +[-0.2815019863211, 0.1947671390916], +[-0.2764492569657, 0.1950185804751], +[-0.2714023995036, 0.1952638268327], +[-0.2663613249187, 0.1955029569496], +[-0.2613259434133, 0.195736049397], +[-0.2562961644186, 0.1959631824789], +[-0.2512718966062, 0.1961844341784], +[-0.2462530478987, 0.196399882105], +[-0.241239525481, 0.1966096034416], +[-0.2362312358105, 0.1968136748918], +[-0.2312280846278, 0.1970121726279], +[-0.2262299769667, 0.1972051722384], +[-0.221236817165, 0.1973927486767], +[-0.2162485088742, 0.1975749762096], +[-0.2112649550701, 0.1977519283658], +[-0.2062860580628, 0.1979236778856], +[-0.2013117195068, 0.1980902966702], +[-0.1963418404116, 0.1982518557321], +[-0.191376321152, 0.1984084251448], +[-0.1864150614781, 0.1985600739945], +[-0.1814579605264, 0.1987068703308], +[-0.1765049168301, 0.198848881119], +[-0.1715558283306, 0.1989861721922], +[-0.1666105923873, 0.1991188082041], +[-0.1616691057903, 0.1992468525832], +[-0.1567312647708, 0.1993703674862], +[-0.1517969650135, 0.1994894137533], +[-0.1468661016679, 0.1996040508638], +[-0.1419385693611, 0.199714336892], +[-0.1370142622099, 0.1998203284651], +[-0.1320930738338, 0.1999220807203], +[-0.1271748973681, 0.2000196472641], +[-0.1222596254771, 0.200113080132], +[-0.1173471503679, 0.2002024297491], +[-0.1124373638045, 0.2002877448921], +[-0.1075301571224, 0.2003690726516], +[-0.1026254212426, 0.2004464583963], +[-0.09772304668737, 0.2005199457381], +[-0.0928229235953, 0.2005895764979], +[-0.08792494173693, 0.2006553906733], +[-0.08302899053092, 0.2007174264073], +[-0.07813495906033, 0.2007757199582], +[-0.07324273608929, 0.200830305671], +[-0.06835221007999, 0.20088121595], +[-0.06346326920993, 0.2009284812334], +[-0.05857580138949, 0.2009721299685], +[-0.05368969427978, 0.2010121885889], +[-0.04880483531071, 0.2010486814938], +[-0.04392111169935, 0.2010816310274], +[-0.03903841046852, 0.2011110574615], +[-0.03415661846556, 0.2011369789786], +[-0.02927562238132, 0.2011594116574], +[-0.02439530876938, 0.2011783694596], +[-0.01951556406521, 0.201193864218], +[-0.01463627460586, 0.2012059056276], +[-0.009757326649324, 0.2012145012372], +[-0.004878606394328, 0.2012196564432], +[-2.802508825719e-15, 0.2012213744851], +[0.004878606394332, 0.2012196564433], +[0.009757326649324, 0.2012145012372], +[0.01463627460586, 0.2012059056276], +[0.01951556406521, 0.201193864218], +[0.02439530876937, 0.2011783694595], +[0.02927562238132, 0.2011594116574], +[0.03415661846556, 0.2011369789786], +[0.03903841046852, 0.2011110574615], +[0.04392111169935, 0.2010816310274], +[0.04880483531071, 0.2010486814938], +[0.05368969427978, 0.2010121885889], +[0.05857580138949, 0.2009721299685], +[0.06346326920993, 0.2009284812334], +[0.06835221007999, 0.20088121595], +[0.07324273608929, 0.200830305671], +[0.07813495906033, 0.2007757199582], +[0.08302899053092, 0.2007174264073], +[0.08792494173693, 0.2006553906733], +[0.09282292359529, 0.2005895764979], +[0.09772304668737, 0.2005199457381], +[0.1026254212426, 0.2004464583963], +[0.1075301571224, 0.2003690726516], +[0.1124373638045, 0.2002877448921], +[0.1173471503679, 0.2002024297491], +[0.122259625477, 0.2001130801319], +[0.1271748973681, 0.2000196472641], +[0.1320930738338, 0.1999220807203], +[0.1370142622099, 0.1998203284651], +[0.1419385693611, 0.199714336892], +[0.1468661016679, 0.1996040508638], +[0.1517969650135, 0.1994894137533], +[0.1567312647708, 0.1993703674862], +[0.1616691057903, 0.1992468525832], +[0.1666105923873, 0.1991188082041], +[0.1715558283305, 0.1989861721922], +[0.1765049168303, 0.198848881119], +[0.1814579605264, 0.1987068703308], +[0.1864150614781, 0.1985600739945], +[0.191376321152, 0.1984084251448], +[0.1963418404116, 0.1982518557321], +[0.2013117195068, 0.1980902966702], +[0.2062860580628, 0.1979236778856], +[0.2112649550701, 0.1977519283658], +[0.2162485088742, 0.1975749762096], +[0.221236817165, 0.1973927486767], +[0.2262299769667, 0.1972051722384], +[0.2312280846278, 0.1970121726279], +[0.2362312358105, 0.1968136748918], +[0.241239525481, 0.1966096034416], +[0.2462530478987, 0.196399882105], +[0.2512718966062, 0.1961844341784], +[0.2562961644186, 0.1959631824789], +[0.2613259434133, 0.195736049397], +[0.2663613249187, 0.1955029569496], +[0.2714023995033, 0.1952638268328], +[0.2764492569657, 0.1950185804751], +[0.2815019863211, 0.1947671390916], +[0.2865606757915, 0.1945094237368], +[0.291625412793, 0.1942453553592], +[0.2966962839234, 0.1939748548551], +[0.3017733749499, 0.1936978431234], +[0.306856770796, 0.1934142411193], +[0.311946555452, 0.1931239690465], +[-0.3091275336564, 0.1980066590195], +[-0.3040427339559, 0.1982889961459], +[-0.2989643984786, 0.1985647611029], +[-0.2938924414551, 0.1988340331747], +[-0.2888267762367, 0.1990968917584], +[-0.2837673153087, 0.199353416309], +[-0.278713970304, 0.1996036862836], +[-0.2736666520157, 0.1998477810864], +[-0.2686252704102, 0.2000857800136], +[-0.2635897346388, 0.2003177621987], +[-0.2585599530502, 0.2005438065574], +[-0.2535358332021, 0.2007639917337], +[-0.2485172818724, 0.2009783960452], +[-0.2435042050707, 0.2011870974294], +[-0.2384965080494, 0.2013901733896], +[-0.2334940953145, 0.2015877009412], +[-0.2284968706363, 0.2017797565589], +[-0.2235047370604, 0.2019664161229], +[-0.2185175969176, 0.202147754867], +[-0.2135353518357, 0.202323847325], +[-0.2085579027488, 0.2024947672795], +[-0.2035851499085, 0.2026605877096], +[-0.1986169928943, 0.2028213807396], +[-0.1936533306245, 0.2029772175878], +[-0.1886940613663, 0.2031281685161], +[-0.1837390827473, 0.2032743027794], +[-0.1787882917663, 0.2034156885763], +[-0.173841584804, 0.2035523929999], +[-0.1688988576349, 0.2036844819886], +[-0.1639600054384, 0.2038120202787], +[-0.1590249228105, 0.2039350713567], +[-0.154093503776, 0.2040536974121], +[-0.1491656418002, 0.2041679592922], +[-0.1442412298021, 0.2042779164556], +[-0.1393201601662, 0.2043836269287], +[-0.1344023247566, 0.2044851472611], +[-0.1294876149292, 0.2045825324834], +[-0.1245759215462, 0.2046758360644], +[-0.1196671349899, 0.2047651098709], +[-0.1147611451765, 0.2048504041271], +[-0.1098578415718, 0.2049317673761], +[-0.1049571132049, 0.2050092464414], +[-0.1000588486846, 0.2050828863908], +[-0.09516293621443, 0.2051527305005], +[-0.09026926360926, 0.2052188202207], +[-0.08537771831119, 0.2052811951431], +[-0.08048818740648, 0.2053398929684], +[-0.07560055764261, 0.2053949494768], +[-0.07071471544564, 0.2054463984986], +[-0.06583054693791, 0.2054942718868], +[-0.06094793795607, 0.2055385994911], +[-0.05606677406937, 0.2055794091338], +[-0.05118694059826, 0.2056167265868], +[-0.04630832263324, 0.20565057555], +[-0.04143080505398, 0.2056809776322], +[-0.03655427254863, 0.2057079523333], +[-0.03167860963344, 0.2057315170273], +[-0.02680370067244, 0.2057516869487], +[-0.02192942989744, 0.2057684751794], +[-0.01705568142804, 0.2057818926377], +[-0.01218233929191, 0.2057919480693], +[-0.007309287445072, 0.2057986480398], +[-0.002436409792319, 0.2058019969296], +[0.002436409792319, 0.2058019969296], +[0.007309287445072, 0.2057986480398], +[0.01218233929191, 0.2057919480693], +[0.01705568142804, 0.2057818926377], +[0.02192942989744, 0.2057684751794], +[0.02680370067244, 0.2057516869487], +[0.03167860963344, 0.2057315170273], +[0.03655427254863, 0.2057079523333], +[0.04143080505398, 0.2056809776322], +[0.04630832263324, 0.20565057555], +[0.05118694059826, 0.2056167265868], +[0.05606677406937, 0.2055794091338], +[0.06094793795607, 0.2055385994911], +[0.06583054693791, 0.2054942718868], +[0.07071471544564, 0.2054463984986], +[0.07560055764261, 0.2053949494768], +[0.08048818740648, 0.2053398929684], +[0.08537771831119, 0.2052811951431], +[0.09026926360926, 0.2052188202207], +[0.09516293621443, 0.2051527305005], +[0.1000588486846, 0.2050828863908], +[0.1049571132049, 0.2050092464414], +[0.1098578415718, 0.2049317673761], +[0.1147611451766, 0.2048504041271], +[0.1196671349899, 0.2047651098709], +[0.1245759215462, 0.2046758360644], +[0.1294876149292, 0.2045825324834], +[0.1344023247566, 0.2044851472611], +[0.1393201601662, 0.2043836269287], +[0.1442412298021, 0.2042779164556], +[0.1491656418002, 0.2041679592922], +[0.154093503776, 0.2040536974121], +[0.1590249228105, 0.2039350713567], +[0.1639600054384, 0.2038120202787], +[0.1688988576349, 0.2036844819886], +[0.173841584804, 0.2035523929999], +[0.1787882917663, 0.2034156885763], +[0.1837390827473, 0.2032743027794], +[0.1886940613663, 0.2031281685161], +[0.1936533306245, 0.2029772175878], +[0.1986169928943, 0.2028213807396], +[0.2035851499085, 0.2026605877096], +[0.2085579027488, 0.2024947672795], +[0.2135353518357, 0.202323847325], +[0.2185175969176, 0.202147754867], +[0.2235047370603, 0.201966416123], +[0.2284968706363, 0.2017797565589], +[0.2334940953145, 0.2015877009412], +[0.2384965080494, 0.2013901733896], +[0.2435042050707, 0.2011870974294], +[0.2485172818724, 0.2009783960452], +[0.2535358332021, 0.2007639917337], +[0.2585599530502, 0.2005438065574], +[0.2635897346388, 0.2003177621987], +[0.2686252704102, 0.2000857800136], +[0.2736666520157, 0.1998477810864], +[0.278713970304, 0.1996036862836], +[0.2837673153087, 0.199353416309], +[0.2888267762367, 0.1990968917584], +[0.2938924414551, 0.1988340331747], +[0.2989643984786, 0.1985647611029], +[0.304042733956, 0.1982889961459], +[0.3091275336564, 0.1980066590195], +[-0.3063087814621, 0.2028888810339], +[-0.301229110467, 0.2031632688555], +[-0.2961559775878, 0.2034311824885], +[-0.291089295329, 0.2036927016158], +[-0.2860289752941, 0.2039479060344], +[-0.2809749281989, 0.2041968755988], +[-0.2759270638858, 0.2044396901648], +[-0.2708852913366, 0.2046764295337], +[-0.2658495186855, 0.2049071733958], +[-0.2608196532315, 0.205132001275], +[-0.2557956014509, 0.2053509924731], +[-0.2507772690091, 0.2055642260143], +[-0.2457645607724, 0.2057717805901], +[-0.2407573808193, 0.2059737345038], +[-0.2357556324525, 0.2061701656163], +[-0.2307592182093, 0.2063611512909], +[-0.2257680398732, 0.2065467683392], +[-0.2207819984848, 0.2067270929669], +[-0.2158009943525, 0.2069022007201], +[-0.2108249270638, 0.2070721664312], +[-0.2058536954955, 0.2072370641663], +[-0.2008871978254, 0.2073969671719], +[-0.1959253315424, 0.2075519478224], +[-0.1909679934583, 0.2077020775682], +[-0.1860150797182, 0.2078474268835], +[-0.1810664858121, 0.2079880652156], +[-0.1761221065861, 0.2081240609335], +[-0.171181836254, 0.2082554812781], +[-0.1662455684091, 0.2083823923124], +[-0.1613131960359, 0.2085048588722], +[-0.1563846115223, 0.2086229445177], +[-0.1514597066721, 0.208736711486], +[-0.1465383727177, 0.2088462206434], +[-0.141620500333, 0.2089515314398], +[-0.1367059796465, 0.2090527018626], +[-0.1317965984414, 0.2091513950023], +[-0.126887851337, 0.2092420058374], +[-0.1219813332919, 0.2093309706396], +[-0.1170791981398, 0.2094170859127], +[-0.1121797697577, 0.2094983700261], +[-0.107283023178, 0.2095758285481], +[-0.1023888451115, 0.2096495080337], +[-0.09749712184142, 0.2097194532465], +[-0.09260773924048, 0.2097857071222], +[-0.08772058278729, 0.2098483107341], +[-0.08283553758349, 0.2099073032596], +[-0.07795248837126, 0.2099627219481], +[-0.07307131955105, 0.2100146020903], +[-0.06819191519972, 0.2100629769893], +[-0.06331415908902, 0.2101078779325], +[-0.05843793470436, 0.2101493341661], +[-0.05356312526387, 0.2101873728701], +[-0.0486896137378, 0.2102220191361], +[-0.04381728286814, 0.2102532959455], +[-0.03894601518851, 0.2102812241504], +[-0.03407569304434, 0.2103058224562], +[-0.02920619861314, 0.2103271074051], +[-0.02433741392515, 0.2103450933627], +[-0.01946922088396, 0.2103597925051], +[-0.01460150128744, 0.210371214809], +[-0.009734136848703, 0.2103793680428], +[-0.004867009217225, 0.2103842577604], +[-1.464310861438e-13, 0.2103858872956], +[0.004867009217225, 0.2103842577604], +[0.009734136848703, 0.2103793680428], +[0.01460150128744, 0.210371214809], +[0.01946922088396, 0.2103597925051], +[0.02433741392515, 0.2103450933627], +[0.02920619861314, 0.2103271074051], +[0.03407569304433, 0.2103058224562], +[0.03894601518851, 0.2102812241504], +[0.04381728286814, 0.2102532959455], +[0.0486896137378, 0.2102220191361], +[0.05356312526387, 0.2101873728701], +[0.05843793470436, 0.2101493341661], +[0.06331415908902, 0.2101078779325], +[0.06819191519972, 0.2100629769893], +[0.07307131955105, 0.2100146020903], +[0.07795248837126, 0.2099627219481], +[0.08283553758349, 0.2099073032596], +[0.08772058278729, 0.2098483107341], +[0.09260773924048, 0.2097857071222], +[0.09749712184142, 0.2097194532465], +[0.1023888451115, 0.2096495080337], +[0.107283023178, 0.2095758285481], +[0.1121797697577, 0.2094983700261], +[0.1170791981398, 0.2094170859127], +[0.1219813331228, 0.2093309688373], +[0.126887851337, 0.2092420058374], +[0.1317965984414, 0.2091513950023], +[0.1367059796465, 0.2090527018626], +[0.141620500333, 0.2089515314398], +[0.1465383727177, 0.2088462206434], +[0.1514597066721, 0.208736711486], +[0.1563846115223, 0.2086229445177], +[0.1613131960359, 0.2085048588722], +[0.1662455684091, 0.2083823923124], +[0.171181836254, 0.2082554812781], +[0.1761221065861, 0.2081240609335], +[0.1810664858121, 0.2079880652156], +[0.1860150797182, 0.2078474268835], +[0.1909679934583, 0.2077020775682], +[0.1959253315424, 0.2075519478224], +[0.2008871978254, 0.2073969671719], +[0.2058536954955, 0.2072370641663], +[0.2108249270638, 0.2070721664312], +[0.2158009943525, 0.2069022007201], +[0.2207819984848, 0.2067270929669], +[0.2257680398732, 0.2065467683392], +[0.2307592182093, 0.2063611512909], +[0.2357556324525, 0.2061701656163], +[0.2407573808193, 0.2059737345038], +[0.2457645607724, 0.2057717805901], +[0.2507772690091, 0.2055642260143], +[0.2557956014509, 0.2053509924731], +[0.2608196532315, 0.205132001275], +[0.2658495186855, 0.2049071733958], +[0.2708852913366, 0.2046764295337], +[0.2759270638858, 0.2044396901648], +[0.2809749281989, 0.2041968755988], +[0.2860289752941, 0.2039479060344], +[0.291089295329, 0.2036927016159], +[0.2961559775878, 0.2034311824885], +[0.301229110467, 0.2031632688555], +[0.3063087814621, 0.2028888810339], +[-0.3034903889149, 0.2077704801213], +[-0.2984159897038, 0.2080369046301], +[-0.2933482010624, 0.2082969539157], +[-0.2882869337465, 0.2085507081078], +[-0.2832320975896, 0.2087982474498], +[-0.2781836015169, 0.209039652242], +[-0.2731413535595, 0.209275002784], +[-0.2681052608676, 0.2095043793182], +[-0.2630752297234, 0.2097278619722], +[-0.2580511655547, 0.2099455307028], +[-0.2530329729463, 0.2101574652388], +[-0.2480205556532, 0.2103637450251], +[-0.2430138166119, 0.2105644491657], +[-0.2380126579525, 0.2107596563684], +[-0.2330169810106, 0.2109494448881], +[-0.2280266863379, 0.211133892472], +[-0.2230416737144, 0.2113130763032], +[-0.2180618421593, 0.2114870729461], +[-0.2130870899423, 0.2116559582913], +[-0.2081173145944, 0.2118198075008], +[-0.2031524129198, 0.2119786949536], +[-0.1981922810063, 0.2121326941919], +[-0.1932368142371, 0.2122818778675], +[-0.1882859073019, 0.2124263176879], +[-0.1833394542084, 0.2125660843642], +[-0.1783973482938, 0.2127012475584], +[-0.1734594822366, 0.2128318758314], +[-0.1685257480686, 0.2129580365919], +[-0.163596037187, 0.2130797960455], +[-0.1586702403663, 0.2131972191443], +[-0.1537482477718, 0.2133103695377], +[-0.1488299489718, 0.2134193095236], +[-0.1439152329508, 0.2135241000001], +[-0.1390039881231, 0.2136248004182], +[-0.1340959183522, 0.2137226722406], +[-0.1291920490009, 0.2138145016849], +[-0.1242902861874, 0.2139026405728], +[-0.1193914070882, 0.2139875720861], +[-0.1144958882399, 0.2140689253548], +[-0.1096030971226, 0.2141462471268], +[-0.1047129813347, 0.2142198506984], +[-0.09982542525436, 0.2142897823533], +[-0.09494031282635, 0.2143560865466], +[-0.09005752757916, 0.2144188058677], +[-0.0851769526424, 0.2144779810053], +[-0.08029847076463, 0.2145336507136], +[-0.07542196433157, 0.2145858517797], +[-0.07054731538461, 0.2146346189926], +[-0.06567440563976, 0.2146799851144], +[-0.06080311650684, 0.2147219808515], +[-0.05593332910909, 0.2147606348294], +[-0.05106492430302, 0.2147959735679], +[-0.04619778269863, 0.214828021458], +[-0.04133178467981, 0.2148568007416], +[-0.03646681042507, 0.2148823314916], +[-0.03160273992854, 0.214904631595], +[-0.02673945302107, 0.2149237167371], +[-0.02187682939164, 0.2149396003882], +[-0.01701474860889, 0.2149522937912], +[-0.01215309014276, 0.2149618059526], +[-0.007291733386362, 0.2149681436339], +[-0.002430557677804, 0.2149713113463], +[0.002430557677804, 0.2149713113463], +[0.007291733386362, 0.2149681436339], +[0.01215309014276, 0.2149618059526], +[0.01701474860889, 0.2149522937912], +[0.02187682939164, 0.2149396003882], +[0.02673945302107, 0.2149237167371], +[0.03160273992854, 0.214904631595], +[0.03646681042507, 0.2148823314916], +[0.04133178467981, 0.2148568007416], +[0.04619778269863, 0.214828021458], +[0.05106492430302, 0.2147959735679], +[0.05593332910909, 0.2147606348294], +[0.06080311650684, 0.2147219808515], +[0.06567440563976, 0.2146799851144], +[0.07054731538461, 0.2146346189926], +[0.07542196433157, 0.2145858517797], +[0.08029847076463, 0.2145336507136], +[0.0851769526424, 0.2144779810053], +[0.09005752757916, 0.2144188058677], +[0.09494031282627, 0.2143560865465], +[0.09982542525436, 0.2142897823533], +[0.1047129813347, 0.2142198506984], +[0.1096030971226, 0.2141462471268], +[0.1144958882399, 0.2140689253548], +[0.1193914070882, 0.2139875720861], +[0.1242902861874, 0.2139026405728], +[0.1291920490009, 0.2138145016849], +[0.1340959183522, 0.2137226722406], +[0.1390039881231, 0.2136248004182], +[0.1439152329508, 0.2135241000001], +[0.1488299489718, 0.2134193095236], +[0.1537482477718, 0.2133103695377], +[0.1586702403663, 0.2131972191443], +[0.1635960371869, 0.2130797960455], +[0.1685257480686, 0.2129580365919], +[0.1734594822366, 0.2128318758314], +[0.1783973482938, 0.2127012475584], +[0.1833394542084, 0.2125660843642], +[0.1882859073019, 0.2124263176879], +[0.1932368142371, 0.2122818778675], +[0.1981922810063, 0.2121326941919], +[0.2031524129198, 0.2119786949536], +[0.2081173145944, 0.2118198075008], +[0.2130870899423, 0.2116559582913], +[0.2180618421593, 0.2114870729461], +[0.2230416737144, 0.2113130763032], +[0.2280266863379, 0.211133892472], +[0.2330169810106, 0.2109494448881], +[0.2380126579525, 0.2107596563684], +[0.2430138166119, 0.2105644491657], +[0.2480205556532, 0.2103637450251], +[0.2530329729463, 0.2101574652388], +[0.2580511655547, 0.2099455307028], +[0.2630752297234, 0.2097278619722], +[0.2681052608676, 0.2095043793182], +[0.2731413535595, 0.209275002784], +[0.2781836015169, 0.209039652242], +[0.2832320975896, 0.2087982474498], +[0.2882869337465, 0.2085507081078], +[0.2933482010624, 0.2082969539157], +[0.2984159897038, 0.2080369046301], +[0.3034903889149, 0.2077704801213], +[-0.3006724460509, 0.2126513003346], +[-0.2956034611354, 0.2129097487339], +[-0.2905411578104, 0.2131619219007], +[-0.2854854450609, 0.2134079004588], +[-0.280436230929, 0.2136477651453], +[-0.2753934225285, 0.2138815967518], +[-0.2703569260587, 0.214109476067], +[-0.2653266468184, 0.2143314838184], +[-0.2603024892189, 0.2145477006143], +[-0.2552843567972, 0.2147582068863], +[-0.2502721522293, 0.2149630828315], +[-0.2452657773407, 0.2151624083553], +[-0.2402651331207, 0.2153562630137], +[-0.2352701197337, 0.2155447259563], +[-0.2302806365307, 0.2157278758696], +[-0.2252965820613, 0.2159057909195], +[-0.2203178540851, 0.2160785486955], +[-0.2153443495836, 0.2162462261538], +[-0.2103759647712, 0.2164088995615], +[-0.205412595107, 0.2165666444407], +[-0.2004541353057, 0.216719535513], +[-0.19550047935, 0.2168676466441], +[-0.1905515205012, 0.2170110507896], +[-0.1856071513115, 0.2171498199397], +[-0.1806672636354, 0.2172840250661], +[-0.175731748642, 0.217413736068], +[-0.1708004968267, 0.2175390217189], +[-0.1658733980238, 0.2176599496146], +[-0.160950341419, 0.2177765861211], +[-0.156031215562, 0.2178889963234], +[-0.1511159083797, 0.2179972439746], +[-0.1462043071897, 0.2181013914464], +[-0.1412962987136, 0.2182014996801], +[-0.1363913098371, 0.2182978519], +[-0.1314906097302, 0.2183901672902], +[-0.1265928663429, 0.2184782377367], +[-0.1216979866427, 0.2185626074955], +[-0.116806112513, 0.2186434068338], +[-0.1119172797842, 0.2187205455503], +[-0.1070312014869, 0.2187939553898], +[-0.1021477899792, 0.2188637564213], +[-0.0972669272928, 0.2189299946538], +[-0.09238849501979, 0.2189927142282], +[-0.08751237433076, 0.2190519573808], +[-0.08263844599277, 0.2191077644069], +[-0.07776659038806, 0.2191601736271], +[-0.07289668753291, 0.2192092213542], +[-0.06802861709706, 0.2192549418619], +[-0.06316225842333, 0.2192973673558], +[-0.05829749054776, 0.2193365279449], +[-0.05343419221992, 0.2193724516154], +[-0.04857224192366, 0.2194051642069], +[-0.04371151789815, 0.2194346893889], +[-0.0388518981591, 0.2194610486407], +[-0.0339932605204, 0.219484261232], +[-0.02913548261588, 0.2195043442059], +[-0.02427844192132, 0.2195213123642], +[-0.01942201577669, 0.2195351782537], +[-0.01456608140853, 0.2195459521552], +[-0.009710515952423, 0.2195536420746], +[-0.004855196475671, 0.2195582537353], +[0, 0.2195597905737], +[0.004855196475671, 0.2195582537353], +[0.009710515952422, 0.2195536420746], +[0.01456608140853, 0.2195459521552], +[0.01942201577669, 0.2195351782537], +[0.02427844192132, 0.2195213123642], +[0.02913548261587, 0.2195043442059], +[0.0339932605204, 0.219484261232], +[0.0388518981591, 0.2194610486407], +[0.04371151789815, 0.2194346893889], +[0.04857224192366, 0.2194051642069], +[0.05343419221992, 0.2193724516154], +[0.05829749054776, 0.2193365279449], +[0.06316225842333, 0.2192973673558], +[0.06802861709706, 0.2192549418619], +[0.07289668753291, 0.2192092213541], +[0.07776659038806, 0.2191601736271], +[0.08263844599277, 0.2191077644069], +[0.08751237433074, 0.2190519573807], +[0.09238849501979, 0.2189927142282], +[0.0972669272928, 0.2189299946538], +[0.1021477899792, 0.2188637564213], +[0.1070312014869, 0.2187939553898], +[0.1119172797842, 0.2187205455503], +[0.116806112513, 0.2186434068338], +[0.1216979866427, 0.2185626074955], +[0.1265928663429, 0.2184782377367], +[0.1314906097302, 0.2183901672902], +[0.1363913098371, 0.2182978519], +[0.1412962987136, 0.2182014996801], +[0.1462043071897, 0.2181013914464], +[0.1511159083797, 0.2179972439746], +[0.1560312155619, 0.2178889963234], +[0.160950341419, 0.2177765861211], +[0.1658733980238, 0.2176599496146], +[0.1708004968267, 0.2175390217189], +[0.175731748642, 0.217413736068], +[0.1806672636354, 0.2172840250661], +[0.1856071513115, 0.2171498199397], +[0.1905515205012, 0.2170110507896], +[0.19550047935, 0.2168676466441], +[0.2004541353057, 0.216719535513], +[0.205412595107, 0.2165666444407], +[0.2103759647712, 0.2164088995615], +[0.2153443495836, 0.2162462261538], +[0.2203178540851, 0.2160785486955], +[0.2252965820613, 0.2159057909195], +[0.2302806365307, 0.2157278758696], +[0.2352701197337, 0.2155447259563], +[0.2402651331207, 0.2153562630137], +[0.2452657773407, 0.2151624083553], +[0.2502721522293, 0.2149630828315], +[0.2552843567977, 0.2147582068862], +[0.2603024892189, 0.2145477006143], +[0.2653266468184, 0.2143314838184], +[0.2703569260587, 0.214109476067], +[0.2753934225285, 0.2138815967518], +[0.280436230929, 0.2136477651453], +[0.2854854450609, 0.2134079004588], +[0.2905411578104, 0.2131619219007], +[0.2956034611354, 0.2129097487339], +[0.3006724460509, 0.2126513003346], +[-0.2978550429889, 0.2175311855834], +[-0.2927916143423, 0.2177816462854], +[-0.2877349368801, 0.2180259328115], +[-0.282684917795, 0.2182641263275], +[-0.2776414633168, 0.2184963081106], +[-0.2726044787276, 0.2187225594902], +[-0.2675738683752, 0.2189429617887], +[-0.2625495356877, 0.2191575962628], +[-0.2575313831864, 0.2193665440447], +[-0.2525193124994, 0.2195698860828], +[-0.2475132243743, 0.2197677030838], +[-0.2425130186908, 0.2199600754534], +[-0.237518594473, 0.2201470832387], +[-0.2325298499019, 0.220328806069], +[-0.2275466823273, 0.2205053230987], +[-0.2225689882795, 0.2206767129484], +[-0.2175966634814, 0.2208430536479], +[-0.21262960286, 0.2210044225786], +[-0.2076677005582, 0.2211608964156], +[-0.2027108499466, 0.2213125510718], +[-0.197758943635, 0.2214594616402], +[-0.1928118734841, 0.2216017023382], +[-0.1878695306178, 0.2217393464512], +[-0.1829318054346, 0.2218724662774], +[-0.1779985876202, 0.2220011330724], +[-0.1730697661594, 0.2221254169943], +[-0.1681452293487, 0.22224538705], +[-0.1632248648091, 0.2223611110414], +[-0.158308559499, 0.2224726555122], +[-0.1533961997274, 0.2225800856956], +[-0.1484876711672, 0.2226834654629], +[-0.1435828588695, 0.2227828572721], +[-0.1386814750481, 0.2228781916561], +[-0.1337838065188, 0.2229700069109], +[-0.1288895791308, 0.2230577972459], +[-0.1239985054921, 0.2231417486862], +[-0.1191104945644, 0.2232220454061], +[-0.1142255147035, 0.2232987681742], +[-0.1093434484757, 0.2233718641082], +[-0.1044641582975, 0.2234414150566], +[-0.09958752430232, 0.223507468618], +[-0.09471342616042, 0.2235700705216], +[-0.08984174309667, 0.2236292645879], +[-0.08497235390925, 0.2236850926917], +[-0.08010513698852, 0.223737594725], +[-0.07523997033644, 0.223786808563], +[-0.07037673158629, 0.2238327700309], +[-0.06551529802284, 0.2238755128722], +[-0.06065554660289, 0.2239150687192], +[-0.05579735397615, 0.223951467065], +[-0.05094059650649, 0.223984735237], +[-0.0460851502935, 0.224014898373], +[-0.04123089119441, 0.2240419793982], +[-0.03637769484619, 0.2240659990049], +[-0.03152543668808, 0.2240869756338], +[-0.02667399198419, 0.2241049254572], +[-0.02182323584644, 0.2241198623646], +[-0.01697304325763, 0.2241317979499], +[-0.01212328909472, 0.2241407415009], +[-0.007273848152156, 0.2241466999909], +[-0.002424595165425, 0.2241496780723], +[0.002424595165425, 0.2241496780723], +[0.007273848152156, 0.2241466999909], +[0.01212328909472, 0.2241407415009], +[0.01697304325763, 0.2241317979499], +[0.02182323584644, 0.2241198623646], +[0.02667399198419, 0.2241049254572], +[0.03152543668808, 0.2240869756338], +[0.03637769484619, 0.2240659990049], +[0.04123089119441, 0.2240419793982], +[0.0460851502935, 0.224014898373], +[0.05094059650649, 0.223984735237], +[0.05579735397615, 0.223951467065], +[0.06065554660289, 0.2239150687192], +[0.06551529802284, 0.2238755128722], +[0.07037673158629, 0.2238327700309], +[0.07523997033644, 0.223786808563], +[0.08010513698851, 0.223737594725], +[0.08497235390925, 0.2236850926917], +[0.08984174309667, 0.2236292645879], +[0.09471342616042, 0.2235700705216], +[0.09958752430232, 0.223507468618], +[0.1044641582975, 0.2234414150566], +[0.1093434484757, 0.2233718641082], +[0.1142255147035, 0.2232987681742], +[0.1191104945644, 0.2232220454061], +[0.1239985054921, 0.2231417486862], +[0.1288895791308, 0.2230577972459], +[0.1337838065188, 0.2229700069109], +[0.1386814750481, 0.2228781916561], +[0.1435828588695, 0.2227828572721], +[0.1484876711672, 0.2226834654629], +[0.1533961997274, 0.2225800856956], +[0.158308559499, 0.2224726555122], +[0.1632248648091, 0.2223611110414], +[0.1681452293487, 0.22224538705], +[0.1730697661594, 0.2221254169943], +[0.1779985876202, 0.2220011330724], +[0.1829318054346, 0.2218724662774], +[0.1878695306178, 0.2217393464512], +[0.1928118734841, 0.2216017023382], +[0.197758943635, 0.2214594616402], +[0.2027108499466, 0.2213125510718], +[0.2076677005582, 0.2211608964156], +[0.21262960286, 0.2210044225786], +[0.2175966634814, 0.2208430536479], +[0.2225689882795, 0.2206767129484], +[0.2275466823273, 0.2205053230987], +[0.2325298499019, 0.220328806069], +[0.237518594473, 0.2201470832387], +[0.2425130186908, 0.2199600754534], +[0.2475132243743, 0.2197677030838], +[0.2525193124994, 0.2195698860828], +[0.2575313831864, 0.2193665440447], +[0.2625495356877, 0.2191575962628], +[0.2675738683752, 0.2189429617887], +[0.2726044787276, 0.2187225594902], +[0.2776414633168, 0.2184963081106], +[0.282684917795, 0.2182641263275], +[0.2877349368801, 0.2180259328115], +[0.2927916143423, 0.2177816462854], +[0.2978550429889, 0.2175311855834], +[-0.2950382699477, 0.2224099796042], +[-0.2899805390333, 0.2226524422277], +[-0.2849296274768, 0.2228888328392], +[-0.2798854406577, 0.2231192331943], +[-0.2748478829736, 0.223343725157], +[-0.2698168578546, 0.2235623906402], +[-0.2647922677779, 0.2237753115453], +[-0.2597740142816, 0.2239825697023], +[-0.2547619979787, 0.2241842468101], +[-0.2497561185696, 0.2243804243763], +[-0.2447562748568, 0.2245711836579], +[-0.2397623647553, 0.2247566056014], +[-0.234774285307, 0.2249367707834], +[-0.2297919326925, 0.2251117593511], +[-0.2248152022431, 0.225281650963], +[-0.2198439884532, 0.2254465247301], +[-0.2148781849921, 0.2256064591566], +[-0.2099176847158, 0.2257615320818], +[-0.2049623796793, 0.225911820621], +[-0.2000121611481, 0.2260574011076], +[-0.1950669196107, 0.2261983490353], +[-0.1901265447898, 0.2263347390004], +[-0.1851909256552, 0.2264666446447], +[-0.1802599504357, 0.2265941385986], +[-0.1753335066317, 0.2267172924246], +[-0.1704114810274, 0.226836176562], +[-0.1654937597043, 0.2269508602706], +[-0.1605802280537, 0.2270614115769], +[-0.1556707707905, 0.2271678972191], +[-0.1507652719662, 0.2272703825941], +[-0.1458636149838, 0.2273689317047], +[-0.1409656902261, 0.2274635055644], +[-0.1360713028973, 0.2275544463315], +[-0.1311804929693, 0.2276416103118], +[-0.126293061415, 0.2277250174272], +[-0.1214088486487, 0.2278047679185], +[-0.1165277442266, 0.2278809603582], +[-0.1116496639933, 0.2279536198713], +[-0.1067744712544, 0.2280227988944], +[-0.1019020442611, 0.2280885466524], +[-0.09703226077646, 0.2281509105002], +[-0.09216499809354, 0.2282099358814], +[-0.08730013305463, 0.2282656662885], +[-0.08243754207035, 0.228318143225], +[-0.0775771011395, 0.2283674061685], +[-0.07271868586915, 0.2284134925358], +[-0.0678621714953, 0.2284564376497], +[-0.06300743290387, 0.2284962747068], +[-0.05815434465206, 0.2285330347482], +[-0.05330278099018, 0.2285667466311], +[-0.04845261588372, 0.2285974370029], +[-0.04360372303586, 0.2286251302763], +[-0.03875597591023, 0.2286498486078], +[-0.033909247754, 0.2286716118767], +[-0.02906341162125, 0.2286904376671], +[-0.02421834039651, 0.2287063412517], +[-0.01937390681861, 0.2287193355776], +[-0.01452998350466, 0.2287294312543], +[-0.009686442974225, 0.2287366365438], +[-0.004843157673553, 0.2287409573532], +[9.112293753444e-13, 0.2287423972288], +[0.004843157673553, 0.2287409573532], +[0.009686442974224, 0.2287366365438], +[0.01452998350466, 0.2287294312543], +[0.01937390681861, 0.2287193355776], +[0.02421834039651, 0.2287063412517], +[0.02906341162125, 0.2286904376671], +[0.033909247754, 0.2286716118767], +[0.03875597591023, 0.2286498486078], +[0.04360372303586, 0.2286251302763], +[0.04845261588372, 0.2285974370029], +[0.05330278099018, 0.2285667466311], +[0.05815434465206, 0.2285330347482], +[0.06300743290387, 0.2284962747068], +[0.0678621714953, 0.2284564376497], +[0.07271868586915, 0.2284134925358], +[0.0775771011395, 0.2283674061685], +[0.08243754207035, 0.228318143225], +[0.08730013305463, 0.2282656662885], +[0.09216499809354, 0.2282099358814], +[0.09703226077646, 0.2281509105002], +[0.1019020442611, 0.2280885466524], +[0.1067744712544, 0.2280227988944], +[0.1116496639933, 0.2279536198713], +[0.1165277442266, 0.2278809603582], +[0.1214088486487, 0.2278047679185], +[0.126293061415, 0.2277250174272], +[0.1311804929693, 0.2276416103118], +[0.1360713028973, 0.2275544463315], +[0.1409656902261, 0.2274635055644], +[0.1458636149838, 0.2273689317047], +[0.1507652719662, 0.2272703825941], +[0.1556707707905, 0.2271678972191], +[0.1605802280537, 0.2270614115769], +[0.1654937597043, 0.2269508602706], +[0.1704114810274, 0.226836176562], +[0.1753335066317, 0.2267172924246], +[0.1802599504357, 0.2265941385986], +[0.1851909256552, 0.2264666446447], +[0.1901265447898, 0.2263347390004], +[0.1950669196107, 0.2261983490353], +[0.2000121611482, 0.2260574011076], +[0.2049623796793, 0.225911820621], +[0.2099176847158, 0.2257615320818], +[0.2148781849921, 0.2256064591566], +[0.2198439884532, 0.2254465247301], +[0.2248152022431, 0.225281650963], +[0.2297919326925, 0.2251117593511], +[0.234774285307, 0.2249367707834], +[0.2397623647553, 0.2247566056014], +[0.2447562748568, 0.2245711836579], +[0.2497561185698, 0.2243804243763], +[0.2547619979787, 0.2241842468101], +[0.2597740142816, 0.2239825697023], +[0.2647922677779, 0.2237753115453], +[0.2698168578546, 0.2235623906402], +[0.2748478829736, 0.223343725157], +[0.2798854406577, 0.2231192331943], +[0.2849296274768, 0.2228888328392], +[0.2899805390333, 0.2226524422277], +[0.2950382699477, 0.2224099796042], +[-0.2922222465471, 0.2272874315366], +[-0.2871703250626, 0.2275219812997], +[-0.2821253189805, 0.2277504679691], +[-0.2770871025627, 0.2279730683325], +[-0.2720555783544, 0.2281898648878], +[-0.2670306479146, 0.2284009401773], +[-0.2620122118308, 0.2286063767262], +[-0.2570001697326, 0.2288062569821], +[-0.2519944203062, 0.2290006632537], +[-0.2469948613071, 0.2291896776499], +[-0.2420013895735, 0.2293733820191], +[-0.2370139010394, 0.2295518578884], +[-0.2320322907469, 0.229725186403], +[-0.2270564528589, 0.2298934482653], +[-0.2220862806716, 0.2300567236751], +[-0.2171216666262, 0.2302150922687], +[-0.2121625023218, 0.230368633059], +[-0.2072086785268, 0.230517424376], +[-0.2022600851914, 0.2306615438062], +[-0.1973166114598, 0.2308010681343], +[-0.192378145682, 0.2309360732831], +[-0.1874445754265, 0.2310666342551], +[-0.1825157874922, 0.2311928250744], +[-0.1775916679216, 0.2313147187278], +[-0.1726721020128, 0.2314323871079], +[-0.1677569743332, 0.2315459009557], +[-0.1628461687321, 0.2316553298043], +[-0.1579395683543, 0.2317607419222], +[-0.1530370556542, 0.2318622042589], +[-0.1481385124094, 0.2319597823895], +[-0.1432438548408, 0.2320535177694], +[-0.1383528542661, 0.2321435135861], +[-0.1334654910947, 0.2322298428729], +[-0.1285816409488, 0.2323125234495], +[-0.1237011547219, 0.2323916021609], +[-0.1188239095167, 0.232467168489], +[-0.1139497885264, 0.2325392667381], +[-0.1090786686682, 0.2326079496234], +[-0.104210426327, 0.2326732680341], +[-0.09934493737414, 0.2327352709895], +[-0.09448207718536, 0.2327940055954], +[-0.08962172066053, 0.2328495170026], +[-0.08476374224314, 0.2329018483666], +[-0.07990801594042, 0.2329510408089], +[-0.07505441534394, 0.2329971333798], +[-0.0702028136506, 0.2330401630236], +[-0.06535308368417, 0.233080164544], +[-0.06050509791707, 0.233117170573], +[-0.05565872849277, 0.2331512115407], +[-0.05081384724839, 0.2331823156471], +[-0.04597032573781, 0.2332105088361], +[-0.04112803525503, 0.2332358147711], +[-0.03628684685792, 0.2332582548131], +[-0.03144663139222, 0.233277848001], +[-0.02660725951587, 0.2332946110328], +[-0.0217686017235, 0.2333085582511], +[-0.01693052837123, 0.2333197016284], +[-0.01209290970159, 0.2333280507566], +[-0.007255615868559, 0.2333336128375], +[-0.002418516962853, 0.2333363926761], +[0.002418516962853, 0.2333363926761], +[0.007255615868559, 0.2333336128375], +[0.01209290970159, 0.2333280507566], +[0.01693052837123, 0.2333197016284], +[0.0217686017235, 0.2333085582511], +[0.02660725951587, 0.2332946110328], +[0.03144663139222, 0.233277848001], +[0.03628684685792, 0.2332582548131], +[0.04112803525503, 0.2332358147711], +[0.04597032573781, 0.2332105088361], +[0.0508138472484, 0.2331823156472], +[0.05565872849277, 0.2331512115407], +[0.06050509791707, 0.233117170573], +[0.06535308368417, 0.233080164544], +[0.0702028136506, 0.2330401630236], +[0.07505441534394, 0.2329971333798], +[0.07990801594042, 0.2329510408089], +[0.08476374224314, 0.2329018483666], +[0.08962172066053, 0.2328495170026], +[0.09448207718536, 0.2327940055954], +[0.09934493737414, 0.2327352709895], +[0.104210426327, 0.2326732680341], +[0.1090786686682, 0.2326079496234], +[0.1139497885264, 0.2325392667381], +[0.1188239095167, 0.232467168489], +[0.1237011547219, 0.2323916021609], +[0.1285816409488, 0.2323125234495], +[0.1334654910947, 0.2322298428729], +[0.1383528542661, 0.2321435135861], +[0.1432438548408, 0.2320535177694], +[0.1481385124094, 0.2319597823895], +[0.1530370556542, 0.2318622042589], +[0.1579395683543, 0.2317607419222], +[0.1628461687321, 0.2316553298043], +[0.1677569743332, 0.2315459009557], +[0.1726721020128, 0.2314323871079], +[0.1775916679216, 0.2313147187278], +[0.1825157874922, 0.2311928250744], +[0.1874445754265, 0.2310666342551], +[0.192378145682, 0.2309360732831], +[0.1973166114598, 0.2308010681343], +[0.2022600851914, 0.2306615438062], +[0.2072086785268, 0.230517424376], +[0.2121625023218, 0.230368633059], +[0.2171216666262, 0.2302150922687], +[0.2220862806716, 0.2300567236751], +[0.2270564528589, 0.2298934482653], +[0.2320322907469, 0.229725186403], +[0.2370139010394, 0.2295518578884], +[0.2420013895735, 0.2293733820191], +[0.2469948613071, 0.2291896776499], +[0.2519944203062, 0.2290006632537], +[0.2570001697326, 0.2288062569821], +[0.2620122118308, 0.2286063767262], +[0.2670306479146, 0.2284009401773], +[0.2720555783544, 0.2281898648878], +[0.2770871025627, 0.2279730683325], +[0.2821253189805, 0.2277504679691], +[0.2871703250626, 0.2275219812997], +[0.2922222480991, 0.2272874308789], +[-0.2894071690384, 0.2321631964006], +[-0.2843610624472, 0.2323901080066], +[-0.2793221009637, 0.2326106839511], +[-0.2742899926457, 0.2328254787793], +[-0.2692646381668, 0.2330345756699], +[-0.2642459371961, 0.2332380578405], +[-0.2592337884125, 0.2334360084856], +[-0.2542280895192, 0.2336285107141], +[-0.2492287372573, 0.2338156474878], +[-0.2442356274195, 0.2339975015591], +[-0.2392486548631, 0.2341741554087], +[-0.2342677135227, 0.2343456911846], +[-0.2292926964238, 0.2345121906391], +[-0.2243234956947, 0.2346737350681], +[-0.219360002579, 0.2348304052486], +[-0.2144021074483, 0.2349822813777], +[-0.2094496998144, 0.2351294430111], +[-0.2045026683411, 0.2352719690019], +[-0.1995609008573, 0.2354099374398], +[-0.1946242843685, 0.2355434255901], +[-0.1896927050698, 0.2356725098335], +[-0.1847660483581, 0.235797265606], +[-0.1798441988447, 0.235917767339], +[-0.1749270403684, 0.2360340884003], +[-0.1700144560084, 0.2361463010347], +[-0.1651063280974, 0.2362544763062], +[-0.1602025382353, 0.2363586840397], +[-0.1553029673034, 0.2364589927639], +[-0.1504074912183, 0.2365554977772], +[-0.1455160171163, 0.2366481883807], +[-0.1406283746287, 0.2367371809502], +[-0.1357444634409, 0.2368225524965], +[-0.1308641742463, 0.2369043523626], +[-0.1259873816414, 0.2369826261069], +[-0.1211139505665, 0.2370574400033], +[-0.1162437613677, 0.2371288498332], +[-0.1113766891396, 0.2371969100117], +[-0.1065126084179, 0.2372616731313], +[-0.1016513931978, 0.2373231899154], +[-0.09679291695278, 0.2373815091726], +[-0.09193705265441, 0.2374366777533], +[-0.08708367279211, 0.2374887405072], +[-0.08223264939369, 0.2375377402423], +[-0.07738385404633, 0.237583717686], +[-0.07253715791803, 0.2376267114473], +[-0.06769243177949, 0.2376667579816], +[-0.0628495460265, 0.2377038915563], +[-0.05800837070275, 0.2377381442188], +[-0.05316877552307, 0.237769545767], +[-0.04833062989702, 0.2377981237203], +[-0.04349380295295, 0.2378239032945], +[-0.03865816356236, 0.2378469073771], +[-0.03382358036457, 0.2378671565057], +[-0.02898992179186, 0.237884668849], +[-0.02415705609445, 0.2378994601879], +[-0.01932485136636, 0.237911543902], +[-0.01449317557094, 0.2379209309556], +[-0.009661896566838, 0.2379276298876], +[-0.004830882134027, 0.2379316468031], +[-2.566843310829e-14, 0.2379329853676], +[0.004830882134027, 0.2379316468031], +[0.009661896566837, 0.2379276298876], +[0.01449317557094, 0.2379209309556], +[0.01932485136636, 0.2379115439019], +[0.02415705609445, 0.2378994601879], +[0.02898992179186, 0.237884668849], +[0.03382358036462, 0.2378671565059], +[0.03865816356236, 0.2378469073771], +[0.04349380295295, 0.2378239032945], +[0.04833062989702, 0.2377981237203], +[0.05316877552307, 0.237769545767], +[0.05800837070276, 0.2377381442188], +[0.0628495460265, 0.2377038915563], +[0.06769243177949, 0.2376667579816], +[0.07253715791803, 0.2376267114473], +[0.07738385404633, 0.237583717686], +[0.08223264939369, 0.2375377402423], +[0.08708367279211, 0.2374887405072], +[0.09193705265441, 0.2374366777533], +[0.09679291695278, 0.2373815091726], +[0.1016513931978, 0.2373231899154], +[0.1065126084179, 0.2372616731313], +[0.1113766891396, 0.2371969100117], +[0.1162437613677, 0.2371288498332], +[0.1211139505665, 0.2370574400033], +[0.1259873816414, 0.2369826261069], +[0.1308641742463, 0.2369043523626], +[0.1357444634409, 0.2368225524965], +[0.1406283746287, 0.2367371809502], +[0.1455160171163, 0.2366481883807], +[0.1504074912183, 0.2365554977772], +[0.1553029673034, 0.2364589927639], +[0.1602025382353, 0.2363586840397], +[0.1651063280974, 0.2362544763062], +[0.1700144560084, 0.2361463010347], +[0.1749270403684, 0.2360340884003], +[0.1798441988447, 0.235917767339], +[0.1847660483581, 0.235797265606], +[0.1896927050698, 0.2356725098335], +[0.1946242843685, 0.2355434255901], +[0.1995609008573, 0.2354099374398], +[0.2045026683411, 0.2352719690019], +[0.2094496998144, 0.2351294430111], +[0.2144021074483, 0.2349822813777], +[0.219360002579, 0.2348304052486], +[0.2243234956947, 0.2346737350681], +[0.2292926964238, 0.2345121906391], +[0.2342677135227, 0.2343456911846], +[0.2392486548631, 0.2341741554087], +[0.2442356274195, 0.2339975015591], +[0.2492287372573, 0.2338156474878], +[0.2542280895192, 0.2336285107141], +[0.2592337884125, 0.2334360084856], +[0.2642459371961, 0.2332380578405], +[0.2692646381668, 0.2330345756699], +[0.2742899926457, 0.2328254787793], +[0.2793221009637, 0.2326106839511], +[0.2843610624472, 0.2323901080066], +[0.289407169036, 0.2321631964015], +[-0.2865926349891, 0.2370382484546], +[-0.2815528413845, 0.23725666659], +[-0.2765200632088, 0.2374693262703], +[-0.2714942002828, 0.2376763113064], +[-0.2664751513896, 0.2378777056046], +[-0.2614628142896, 0.2380735931043], +[-0.2564570857353, 0.238264057714], +[-0.2514578614853, 0.2384491832486], +[-0.2464650363181, 0.2386290533661], +[-0.2414785040458, 0.2388037515043], +[-0.2364981575273, 0.2389733608178], +[-0.2315238886811, 0.2391379641151], +[-0.2265555884985, 0.239297643795], +[-0.221593147056, 0.239452481784], +[-0.2166364535281, 0.2396025594733], +[-0.2116853961994, 0.239747957656], +[-0.2067398624773, 0.2398887564643], +[-0.2017997389043, 0.2400250353074], +[-0.1968649111704, 0.240156872809], +[-0.1919352641256, 0.2402843467451], +[-0.1870106817928, 0.2404075339826], +[-0.1820910473798, 0.2405265104177], +[-0.177176243293, 0.2406413509148], +[-0.17226615115, 0.240752129246], +[-0.167360651793, 0.2408589180307], +[-0.1624596253025, 0.2409617886761], +[-0.1575629510114, 0.2410608113179], +[-0.1526704976316, 0.2411560603394], +[-0.1477821733584, 0.2412475942097], +[-0.142897828319, 0.2413354732682], +[-0.1380173388618, 0.2414197738921], +[-0.1331405874856, 0.2415005611756], +[-0.1282674535232, 0.2415778918989], +[-0.1233978062111, 0.2416518234119], +[-0.1185315206275, 0.2417224153719], +[-0.113668470063, 0.2417897239329], +[-0.1088085272212, 0.2418538034304], +[-0.1039515642379, 0.2419147063327], +[-0.09909745269992, 0.2419724831932], +[-0.09424606366504, 0.2420271826043], +[-0.08939726768228, 0.2420788511533], +[-0.08455093481274, 0.2421275333788], +[-0.07970693465088, 0.2421732717297], +[-0.07486513634638, 0.2422161065256], +[-0.0700254086265, 0.2422560759187], +[-0.06518761981894, 0.2422932158578], +[-0.06035163787509, 0.2423275600546], +[-0.05551733039385, 0.2423591399508], +[-0.05068456464585, 0.2423879846886], +[-0.04585320759804, 0.2424141210824], +[-0.04102312593872, 0.2424375735929], +[-0.03619418610293, 0.2424583643035], +[-0.03136625429816, 0.2424765128985], +[-0.0265391965304, 0.2424920366443], +[-0.02171287863039, 0.2425049503722], +[-0.01688716628021, 0.242515266464], +[-0.01206192504, 0.2425229948399], +[-0.00723702037491, 0.2425281429486], +[-0.002412317682093, 0.2425307157599], +[0.002412317682093, 0.2425307157599], +[0.00723702037491, 0.2425281429486], +[0.01206192504, 0.2425229948399], +[0.01688716628021, 0.242515266464], +[0.02171287863039, 0.2425049503722], +[0.0265391965304, 0.2424920366443], +[0.03136625429816, 0.2424765128985], +[0.03619418610293, 0.2424583643035], +[0.04102312593872, 0.2424375735929], +[0.04585320759804, 0.2424141210824], +[0.05068456464585, 0.2423879846886], +[0.05551733039385, 0.2423591399508], +[0.06035163787508, 0.2423275600546], +[0.06518761981894, 0.2422932158578], +[0.0700254086265, 0.2422560759187], +[0.07486513634638, 0.2422161065256], +[0.07970693465088, 0.2421732717297], +[0.08455093481274, 0.2421275333788], +[0.08939726768228, 0.2420788511533], +[0.09424606366504, 0.2420271826043], +[0.09909745269992, 0.2419724831932], +[0.1039515642379, 0.2419147063327], +[0.1088085272212, 0.2418538034304], +[0.113668470063, 0.2417897239329], +[0.1185315206275, 0.2417224153719], +[0.1233978062111, 0.2416518234119], +[0.1282674535232, 0.2415778918989], +[0.1331405874856, 0.2415005611756], +[0.1380173388618, 0.2414197738921], +[0.142897828319, 0.2413354732682], +[0.1477821733584, 0.2412475942097], +[0.1526704976316, 0.2411560603394], +[0.1575629510114, 0.2410608113179], +[0.1624596253025, 0.2409617886761], +[0.167360651793, 0.2408589180307], +[0.17226615115, 0.240752129246], +[0.177176243293, 0.2406413509148], +[0.1820910473798, 0.2405265104177], +[0.1870106817928, 0.2404075339826], +[0.1919352641256, 0.2402843467451], +[0.1968649111704, 0.240156872809], +[0.2017997389043, 0.2400250353074], +[0.2067398624773, 0.2398887564643], +[0.2116853961994, 0.239747957656], +[0.2166364535281, 0.2396025594733], +[0.221593147056, 0.239452481784], +[0.2265555884985, 0.239297643795], +[0.2315238886811, 0.2391379641151], +[0.2364981575273, 0.2389733608178], +[0.2414785040458, 0.2388037515043], +[0.2464650363181, 0.2386290533661], +[0.2514578614853, 0.2384491832486], +[0.2564570857353, 0.238264057714], +[0.2614628142896, 0.2380735931043], +[0.2664751513896, 0.2378777056046], +[0.2714942002828, 0.2376763113064], +[0.2765200632088, 0.2374693262703], +[0.2815528413845, 0.23725666659], +[0.2865926349891, 0.2370382484546], +[-0.2837792294221, 0.2419106210856], +[-0.2787457522699, 0.2421215009984], +[-0.2737192957268, 0.2423262401173], +[-0.2686998151093, 0.2425254123902], +[-0.2636872072917, 0.2427191024983], +[-0.2586813681078, 0.2429073951488], +[-0.2536821923656, 0.2430903750097], +[-0.2486895738614, 0.2432681266461], +[-0.2437034053936, 0.2434407344554], +[-0.2387235787765, 0.2436082826035], +[-0.2337499848532, 0.2437708549599], +[-0.228782513509, 0.2439285350336], +[-0.2238210536839, 0.244081405909], +[-0.2188654933857, 0.244229550181], +[-0.2139157197021, 0.2443730498914], +[-0.2089716188139, 0.2445119864645], +[-0.2040330760069, 0.2446464406431], +[-0.1990999756848, 0.2447764924249], +[-0.1941722013816, 0.2449022209987], +[-0.1892496357742, 0.2450237046811], +[-0.1843321606953, 0.2451410208532], +[-0.1794196571463, 0.2452542458981], +[-0.1745120053105, 0.2453634551382], +[-0.1696090845661, 0.2454687227734], +[-0.1647107735005, 0.2455701218195], +[-0.1598169499235, 0.2456677240468], +[-0.1549274869766, 0.2457615975877], +[-0.1500422703293, 0.2458518208062], +[-0.1451611715487, 0.2459384496064], +[-0.1402840616296, 0.2460215531452], +[-0.1354108151363, 0.2461012001438], +[-0.1305413088182, 0.2461774513752], +[-0.125675414142, 0.246250368325], +[-0.1208130032466, 0.246320010687], +[-0.1159539476373, 0.2463864363937], +[-0.1110981182042, 0.2464497015649], +[-0.1062453852403, 0.2465098604553], +[-0.101395618462, 0.2465669654061], +[-0.09654868702872, 0.2466210667956], +[-0.09170445956336, 0.2466722129931], +[-0.08686280417349, 0.2467204503135], +[-0.08202358847306, 0.2467658229733], +[-0.07718667960463, 0.2468083730491], +[-0.07235194426212, 0.2468481404374], +[-0.0675192487141, 0.2468851628163], +[-0.06268845882761, 0.2469194756093], +[-0.05785944009246, 0.2469511119508], +[-0.05303205764599, 0.2469801026538], +[-0.04820617629834, 0.2470064761802], +[-0.04338166055808, 0.2470302586122], +[-0.03855837465827, 0.2470514736272], +[-0.03373618258294, 0.2470701424739], +[-0.02891494809383, 0.2470862839514], +[-0.0240945347575, 0.2470999143905], +[-0.01927480597266, 0.2471110476374], +[-0.01445562499784, 0.2471196950397], +[-0.009636854979096, 0.2471258654354], +[-0.004818358978069, 0.2471295651433], +[-2.488500450474e-13, 0.2471307979576], +[0.004818358978068, 0.2471295651433], +[0.009636854979096, 0.2471258654354], +[0.01445562499784, 0.2471196950397], +[0.01927480597266, 0.2471110476374], +[0.0240945347575, 0.2470999143905], +[0.02891494809383, 0.2470862839514], +[0.03373618258294, 0.2470701424739], +[0.03855837465827, 0.2470514736272], +[0.04338166055808, 0.2470302586122], +[0.04820617629834, 0.2470064761802], +[0.05303205764599, 0.2469801026538], +[0.05785944009246, 0.2469511119508], +[0.06268845882761, 0.2469194756093], +[0.0675192487141, 0.2468851628163], +[0.07235194426212, 0.2468481404374], +[0.07718667960463, 0.2468083730491], +[0.08202358847306, 0.2467658229733], +[0.08686280417349, 0.2467204503135], +[0.09170445956336, 0.2466722129931], +[0.09654868702872, 0.2466210667956], +[0.101395618462, 0.2465669654061], +[0.1062453852403, 0.2465098604553], +[0.1110981182042, 0.2464497015649], +[0.1159539476375, 0.2463864363938], +[0.1208130032466, 0.246320010687], +[0.125675414142, 0.246250368325], +[0.1305413088182, 0.2461774513752], +[0.1354108151363, 0.2461012001438], +[0.1402840616296, 0.2460215531452], +[0.1451611715487, 0.2459384496064], +[0.1500422703293, 0.2458518208062], +[0.1549274869766, 0.2457615975877], +[0.1598169499235, 0.2456677240468], +[0.1647107735005, 0.2455701218195], +[0.1696090845661, 0.2454687227734], +[0.1745120053105, 0.2453634551382], +[0.1794196571463, 0.2452542458981], +[0.1843321606953, 0.2451410208532], +[0.1892496357742, 0.2450237046811], +[0.1941722013816, 0.2449022209987], +[0.1990999756848, 0.2447764924249], +[0.2040330760069, 0.2446464406431], +[0.2089716188139, 0.2445119864645], +[0.2139157197021, 0.2443730498914], +[0.2188654933857, 0.244229550181], +[0.2238210536839, 0.244081405909], +[0.228782513509, 0.2439285350336], +[0.2337499848532, 0.2437708549599], +[0.2387235787765, 0.2436082826035], +[0.2437034053936, 0.2434407344554], +[0.2486895738614, 0.2432681266461], +[0.2536821923656, 0.2430903750097], +[0.2586813681078, 0.2429073951488], +[0.2636872072917, 0.2427191024983], +[0.2686998151093, 0.2425254123902], +[0.2737192957268, 0.2423262401173], +[0.2787457522699, 0.2421215009984], +[0.2837792294237, 0.2419106210851], +[-0.2809670218377, 0.2467820962566], +[-0.2759398857149, 0.2469844548564], +[-0.2709198887751, 0.247181270358], +[-0.2659069270382, 0.2473726281823], +[-0.2609008954516, 0.2475586138329], +[-0.2559016879047, 0.2477393128309], +[-0.2509091972435, 0.2479148106495], +[-0.2459233152845, 0.2480851926483], +[-0.2409439328289, 0.248250544008], +[-0.2359709396759, 0.2484109496645], +[-0.2310042246356, 0.2485664942437], +[-0.2260436755429, 0.2487172619956], +[-0.2210891792694, 0.2488633367289], +[-0.2161406217369, 0.2490048017448], +[-0.2111978879294, 0.2491417397723], +[-0.2062608619063, 0.2492742329021], +[-0.2013294268144, 0.2494023625216], +[-0.196403464901, 0.2495262092494], +[-0.1914828575263, 0.2496458528705], +[-0.1865674851762, 0.2497613722715], +[-0.1816572274754, 0.2498728453759], +[-0.1767519632004, 0.24998034908], +[-0.1718515702928, 0.2500839591892], +[-0.1669559258733, 0.2501837503543], +[-0.1620649062551, 0.2502797960085], +[-0.1571783868435, 0.250372166203], +[-0.1522962414926, 0.2504609377471], +[-0.1474183470358, 0.2505461754636], +[-0.1425445749349, 0.2506279465867], +[-0.1376747964686, 0.2507063187505], +[-0.132808884876, 0.2507813574776], +[-0.1279467109222, 0.2508531254778], +[-0.1230881450102, 0.2509216842556], +[-0.1182330568796, 0.2509870935629], +[-0.113381315625, 0.251049411345], +[-0.1085327897155, 0.2511086936867], +[-0.1036873470137, 0.2511649947606], +[-0.09884485479646, 0.2512183667761], +[-0.09400517977541, 0.2512688599305], +[-0.08916818811855, 0.2513165223615], +[-0.08433374547215, 0.2513614001009], +[-0.07950171698337, 0.2514035370306], +[-0.07467196732342, 0.2514429748403], +[-0.06984436071131, 0.2514797529865], +[-0.0650187609381, 0.2515139086544], +[-0.06019503139176, 0.251545476721], +[-0.05537303508246, 0.2515744897207], +[-0.05055263466846, 0.251600977813], +[-0.04573369248237, 0.2516249687523], +[-0.04091607055793, 0.2516464878603], +[-0.03609963065712, 0.2516655580002], +[-0.03128423429775, 0.2516821995538], +[-0.02646974278131, 0.2516964304009], +[-0.0216560172212, 0.2517082659012], +[-0.01684291857116, 0.2517177188783], +[-0.01203030765399, 0.2517247996068], +[-0.007218045190478, 0.2517295158022], +[-0.002405991828377, 0.2517318726122], +[0.002405991828377, 0.2517318726122], +[0.007218045190478, 0.2517295158022], +[0.01203030765399, 0.2517247996068], +[0.01684291857116, 0.2517177188783], +[0.0216560172212, 0.2517082659012], +[0.02646974278131, 0.2516964304009], +[0.03128423429775, 0.2516821995538], +[0.03609963065712, 0.2516655580002], +[0.04091607055793, 0.2516464878603], +[0.04573369248237, 0.2516249687523], +[0.05055263466846, 0.251600977813], +[0.05537303508246, 0.2515744897207], +[0.06019503139176, 0.251545476721], +[0.0650187609381, 0.2515139086544], +[0.06984436071131, 0.2514797529865], +[0.07467196732342, 0.2514429748403], +[0.07950171698337, 0.2514035370306], +[0.08433374547215, 0.2513614001009], +[0.08916818811855, 0.2513165223615], +[0.09400517977541, 0.2512688599305], +[0.09884485479646, 0.2512183667761], +[0.1036873470137, 0.2511649947606], +[0.1085327897155, 0.2511086936867], +[0.113381315625, 0.251049411345], +[0.1182330568796, 0.2509870935629], +[0.1230881450102, 0.2509216842556], +[0.1279467109222, 0.2508531254778], +[0.132808884876, 0.2507813574776], +[0.1376747964686, 0.2507063187505], +[0.1425445749349, 0.2506279465867], +[0.1474183470358, 0.2505461754636], +[0.1522962414926, 0.2504609377471], +[0.1571783868435, 0.250372166203], +[0.1620649062551, 0.2502797960085], +[0.1669559258733, 0.2501837503543], +[0.1718515702928, 0.2500839591892], +[0.1767519632004, 0.24998034908], +[0.1816572274754, 0.2498728453759], +[0.1865674851762, 0.2497613722715], +[0.1914828575263, 0.2496458528705], +[0.196403464901, 0.2495262092494], +[0.2013294268144, 0.2494023625216], +[0.2062608619063, 0.2492742329021], +[0.2111978879294, 0.2491417397723], +[0.2161406217369, 0.2490048017448], +[0.2210891792694, 0.2488633367289], +[0.2260436755429, 0.2487172619956], +[0.2310042246356, 0.2485664942437], +[0.2359709396759, 0.2484109496645], +[0.2409439328289, 0.248250544008], +[0.2459233152845, 0.2480851926483], +[0.2509091972435, 0.2479148106495], +[0.2559016879047, 0.2477393128309], +[0.2609008954516, 0.2475586138329], +[0.2659069270382, 0.2473726281823], +[0.2709198887751, 0.247181270358], +[0.2759398857149, 0.2469844548564], +[0.2809670218377, 0.2467820962566], +[-0.2781556841947, 0.2516506254689], +[-0.2731353325653, 0.2518453714344], +[-0.2681219328766, 0.2520342615031], +[-0.2631156262796, 0.252217804479], +[-0.2581163057769, 0.2523960867355], +[-0.2531238632962, 0.2525691946544], +[-0.2481381897041, 0.2527372145596], +[-0.2431591748203, 0.2529002326499], +[-0.2381867074315, 0.2530583349327], +[-0.2332206753046, 0.2532116071569], +[-0.2282609652, 0.2533601347462], +[-0.2233074628846, 0.2535040027318], +[-0.2183600531448, 0.2536432956858], +[-0.2134186197988, 0.2537780976539], +[-0.2084830457097, 0.2539084920886], +[-0.2035532127976, 0.2540345617824], +[-0.198629002053, 0.2541563888011], +[-0.1937102935486, 0.2542740544168], +[-0.1887969664527, 0.2543876390416], +[-0.183888899042, 0.2544972221616], +[-0.1789859687146, 0.2546028822704], +[-0.1740880520032, 0.2547046968041], +[-0.1691950245889, 0.2548027420751], +[-0.1643067613154, 0.2548970932082], +[-0.1594231362022, 0.2549878240754], +[-0.154544022288, 0.2550750066774], +[-0.1496692921456, 0.2551587138704], +[-0.144798817894, 0.2552390139299], +[-0.1399324697557, 0.25531597493], +[-0.1350701179631, 0.2553896642766], +[-0.1302116320026, 0.2554601467572], +[-0.1253568805623, 0.2555274857273], +[-0.1205057316368, 0.2555917427999], +[-0.1156580525451, 0.2556529777887], +[-0.1108137099501, 0.2557112486523], +[-0.1059725698788, 0.25576661144], +[-0.1011344977419, 0.2558191202386], +[-0.0962993583554, 0.2558688271204], +[-0.09146701596238, 0.2559157820943], +[-0.08663733425482, 0.2559600330564], +[-0.08181017639688, 0.2560016257435], +[-0.0769854050483, 0.2560406036889], +[-0.07216288238861, 0.2560770081787], +[-0.06734247014183, 0.2561108782111], +[-0.06252402960183, 0.2561422504576], +[-0.05770742165819, 0.2561711592262], +[-0.05289250682264, 0.2561976364263], +[-0.04807914525598, 0.256221711537], +[-0.04326719679554, 0.2562434115767], +[-0.03845652098301, 0.2562627610753], +[-0.03364697709276, 0.2562797820496], +[-0.02883842416056, 0.2562944939799], +[-0.02403072101257, 0.2563069137906], +[-0.01922372629473, 0.2563170558319], +[-0.01441729850236, 0.2563249318656], +[-0.009611296009997, 0.2563305510524], +[-0.004805577101465, 0.2563339199425], +[0, 0.2563350424687], +[0.004805577101465, 0.2563339199425], +[0.009611296009997, 0.2563305510524], +[0.01441729850236, 0.2563249318656], +[0.01922372629473, 0.2563170558319], +[0.02403072101257, 0.2563069137906], +[0.02883842416056, 0.2562944939799], +[0.03364697709276, 0.2562797820496], +[0.03845652098301, 0.2562627610753], +[0.04326719679554, 0.2562434115767], +[0.04807914525598, 0.256221711537], +[0.05289250682264, 0.2561976364263], +[0.05770742165819, 0.2561711592262], +[0.06252402960183, 0.2561422504576], +[0.06734247014183, 0.2561108782111], +[0.07216288238861, 0.2560770081787], +[0.0769854050483, 0.2560406036889], +[0.08181017639688, 0.2560016257435], +[0.08663733425482, 0.2559600330564], +[0.09146701596238, 0.2559157820943], +[0.0962993583554, 0.2558688271204], +[0.1011344977418, 0.2558191202384], +[0.1059725698788, 0.25576661144], +[0.1108137099501, 0.2557112486523], +[0.1156580525451, 0.2556529777887], +[0.1205057316368, 0.2555917427999], +[0.1253568805623, 0.2555274857273], +[0.1302116320026, 0.2554601467572], +[0.1350701179631, 0.2553896642766], +[0.1399324697557, 0.25531597493], +[0.144798817894, 0.2552390139299], +[0.1496692921456, 0.2551587138704], +[0.154544022288, 0.2550750066774], +[0.1594231362022, 0.2549878240754], +[0.1643067613154, 0.2548970932082], +[0.1691950245889, 0.2548027420751], +[0.1740880520032, 0.2547046968041], +[0.1789859687146, 0.2546028822704], +[0.183888899042, 0.2544972221616], +[0.1887969664527, 0.2543876390416], +[0.1937102935486, 0.2542740544168], +[0.198629002053, 0.2541563888011], +[0.2035532127976, 0.2540345617824], +[0.2084830457097, 0.2539084920886], +[0.2134186197988, 0.2537780976539], +[0.2183600531448, 0.2536432956858], +[0.2233074628846, 0.2535040027318], +[0.2282609652, 0.2533601347462], +[0.2332206753046, 0.2532116071569], +[0.2381867074315, 0.2530583349327], +[0.2431591748203, 0.2529002326499], +[0.2481381897041, 0.2527372145596], +[0.2531238632962, 0.2525691946544], +[0.2581163057769, 0.2523960867355], +[0.2631156262796, 0.252217804479], +[0.2681219328766, 0.2520342615031], +[0.2731353325653, 0.2518453714344], +[0.2781556875344, 0.2516506244738], +[-0.2753460498322, 0.2565173050864], +[-0.2703321839195, 0.2567040936172], +[-0.2653255188388, 0.2568850576772], +[-0.2603260033602, 0.2570607866906], +[-0.2553335285246, 0.2572313679484], +[-0.2503479842808, 0.25739688874], +[-0.2453692594988, 0.2575574362856], +[-0.2403972419846, 0.2577130976684], +[-0.2354318184934, 0.2578639597664], +[-0.2304728747429, 0.2580101091841], +[-0.2255202954265, 0.2581516321846], +[-0.2205739642263, 0.258288614621], +[-0.2156337638257, 0.258421141868], +[-0.2106995759222, 0.2585492987536], +[-0.20577128124, 0.2586731694908], +[-0.2008487595426, 0.2587928376093], +[-0.1959318896456, 0.2589083858869], +[-0.1910205494291, 0.2590198962816], +[-0.1861146158511, 0.2591274498639], +[-0.18121396496, 0.2592311267484], +[-0.1763184719082, 0.2593310060268], +[-0.1714280109653, 0.2594271657005], +[-0.1665424555325, 0.259519682614], +[-0.1616616781561, 0.259608632388], +[-0.1567855505422, 0.2596940893541], +[-0.1519139434874, 0.2597761263533], +[-0.1470467273162, 0.2598548153496], +[-0.1421837710525, 0.2599302260101], +[-0.1373249432801, 0.2600024269974], +[-0.1324701117381, 0.2600714852294], +[-0.1276191434219, 0.2601374659535], +[-0.1227719046018, 0.2602004326861], +[-0.1179282608417, 0.2602604471531], +[-0.1130880770181, 0.2603175692322], +[-0.1082512173401, 0.2603718568955], +[-0.10341754537, 0.2604233661544], +[-0.09858692404464, 0.2604721510053], +[-0.09375921569717, 0.2605182633774], +[-0.0889342820796, 0.2605617530814], +[-0.08411198438602, 0.2606026677606], +[-0.07929218327683, 0.2606410528438], +[-0.07447473890259, 0.2606769514992], +[-0.06965951092985, 0.2607104045915], +[-0.0648463585667, 0.2607414506405], +[-0.06003514058918, 0.2607701257814], +[-0.05522571536832, 0.2607964637284], +[-0.05041794089768, 0.2608204957393], +[-0.04561167482148, 0.2608422505838], +[-0.04080677446315, 0.2608617545131], +[-0.03600309685444, 0.260879031233], +[-0.03120049876489, 0.2608941018785], +[-0.02639883673174, 0.260906984992], +[-0.02159796709015, 0.2609176965036], +[-0.01679774600376, 0.2609262497143], +[-0.01199802949553, 0.2609326552818], +[-0.00719867347875, 0.2609369212095], +[-0.00239953378825, 0.2609390528376], +[0.00239953378825, 0.2609390528376], +[0.00719867347875, 0.2609369212095], +[0.01199802949553, 0.2609326552818], +[0.01679774600376, 0.2609262497143], +[0.02159796709015, 0.2609176965036], +[0.02639883673174, 0.260906984992], +[0.03120049876489, 0.2608941018785], +[0.03600309685444, 0.260879031233], +[0.04080677446315, 0.2608617545131], +[0.04561167482148, 0.2608422505838], +[0.05041794089768, 0.2608204957393], +[0.05522571536832, 0.2607964637284], +[0.06003514058918, 0.2607701257814], +[0.0648463585667, 0.2607414506405], +[0.06965951092985, 0.2607104045915], +[0.07447473890259, 0.2606769514992], +[0.07929218327683, 0.2606410528438], +[0.08411198438603, 0.2606026677606], +[0.0889342820796, 0.2605617530814], +[0.09375921569717, 0.2605182633774], +[0.09858692404464, 0.2604721510053], +[0.10341754537, 0.2604233661544], +[0.1082512173401, 0.2603718568955], +[0.1130880770181, 0.2603175692322], +[0.1179282608417, 0.2602604471531], +[0.1227719046018, 0.2602004326861], +[0.1276191434219, 0.2601374659535], +[0.1324701117381, 0.2600714852294], +[0.1373249432801, 0.2600024269974], +[0.1421837710525, 0.2599302260101], +[0.1470467273162, 0.2598548153496], +[0.1519139434874, 0.2597761263533], +[0.1567855505422, 0.2596940893541], +[0.1616616781561, 0.259608632388], +[0.1665424555325, 0.259519682614], +[0.1714280109653, 0.2594271657005], +[0.1763184719082, 0.2593310060268], +[0.18121396496, 0.2592311267484], +[0.1861146158511, 0.2591274498639], +[0.1910205494291, 0.2590198962816], +[0.1959318896456, 0.2589083858869], +[0.2008487595426, 0.2587928376093], +[0.20577128124, 0.2586731694908], +[0.2106995759222, 0.2585492987536], +[0.2156337638257, 0.258421141868], +[0.2205739642263, 0.258288614621], +[0.2255202954265, 0.2581516321846], +[0.2304728747429, 0.2580101091841], +[0.2354318184934, 0.2578639597664], +[0.2403972419846, 0.2577130976684], +[0.2453692594988, 0.2575574362856], +[0.2503479842808, 0.25739688874], +[0.2553335285246, 0.2572313679484], +[0.2603260033602, 0.2570607866906], +[0.2653255188388, 0.2568850576772], +[0.2703321839195, 0.2567040936172], +[0.275346049834, 0.2565173050859], +[-0.2725376390812, 0.2613822154672], +[-0.2675305311478, 0.2615604638729], +[-0.2625307377729, 0.2617335025875], +[-0.2575381491434, 0.2619014198105], +[-0.2525526543217, 0.2620643037982], +[-0.2475741412605, 0.2622222427947], +[-0.2426024968169, 0.2623753249629], +[-0.237637606766, 0.2625236383154], +[-0.2326793558147, 0.2626672706449], +[-0.2277276276145, 0.2628063094545], +[-0.2227823047747, 0.2629408418887], +[-0.2178432688753, 0.2630709546628], +[-0.2129104004793, 0.263196733994], +[-0.2079835791459, 0.2633182655307], +[-0.2030626834424, 0.263435634283], +[-0.1981475909577, 0.2635489245532], +[-0.1932381783138, 0.2636582198651], +[-0.1883343211799, 0.2637636028953], +[-0.1834358942841, 0.2638651554031], +[-0.1785427714275, 0.2639629581612], +[-0.173654825497, 0.2640570908868], +[-0.1687719284794, 0.2641476321727], +[-0.1638939514752, 0.264234659419], +[-0.1590207647128, 0.2643182487651], +[-0.1541522375639, 0.2643984750219], +[-0.1492882385583, 0.2644754116058], +[-0.1444286353996, 0.2645491304713], +[-0.139573294982, 0.2646197020466], +[-0.1347220834066, 0.264687195168], +[-0.1298748659992, 0.2647516770167], +[-0.1250315073281, 0.2648132130556], +[-0.1201918712229, 0.2648718669678], +[-0.1153558207936, 0.2649277005958], +[-0.1105232184512, 0.2649807738821], +[-0.1056939259275, 0.2650311448114], +[-0.1008678042972, 0.2650788693536], +[-0.09604471399981, 0.2651240014094], +[-0.0912245148622, 0.2651665927559], +[-0.08640706612234, 0.2652066929957], +[-0.08159222645347, 0.2652443495066], +[-0.07677985398896, 0.2652796073935], +[-0.07196980634797, 0.2653125094426], +[-0.06716194066167, 0.2653430960773], +[-0.0623561136002, 0.2653714053165], +[-0.05755218140023, 0.2653974727349], +[-0.05274999989312, 0.265421331426], +[-0.0479494245337, 0.2654430119674], +[-0.04315031042959, 0.2654625423881], +[-0.038352512371, 0.2654799481393], +[-0.03355588486103, 0.2654952520671], +[-0.02876028214646, 0.2655084743877], +[-0.02396555824887, 0.2655196326665], +[-0.01917156699614, 0.2655287417985], +[-0.01437816205426, 0.2655358139927], +[-0.009585196959392, 0.2655408587585], +[-0.004792525150144, 0.265543882896], +[0, 0.265544890488], +[0.004792525150144, 0.265543882896], +[0.009585196959392, 0.2655408587585], +[0.01437816205426, 0.2655358139927], +[0.01917156699614, 0.2655287417985], +[0.02396555824887, 0.2655196326665], +[0.02876028214646, 0.2655084743877], +[0.03355588486103, 0.2654952520671], +[0.038352512371, 0.2654799481393], +[0.04315031042959, 0.2654625423881], +[0.0479494245337, 0.2654430119674], +[0.05274999989312, 0.265421331426], +[0.05755218140023, 0.2653974727349], +[0.0623561136002, 0.2653714053165], +[0.06716194066167, 0.2653430960773], +[0.07196980634797, 0.2653125094426], +[0.07677985398896, 0.2652796073935], +[0.08159222645347, 0.2652443495066], +[0.08640706612234, 0.2652066929957], +[0.0912245148622, 0.2651665927559], +[0.09604471399981, 0.2651240014094], +[0.1008678042972, 0.2650788693536], +[0.1056939259275, 0.2650311448114], +[0.1105232184512, 0.2649807738821], +[0.1153558207936, 0.2649277005958], +[0.1201918712229, 0.2648718669678], +[0.1250315073281, 0.2648132130556], +[0.1298748659992, 0.2647516770167], +[0.1347220834066, 0.264687195168], +[0.139573294982, 0.2646197020466], +[0.1444286353996, 0.2645491304713], +[0.1492882385583, 0.2644754116058], +[0.1541522375639, 0.2643984750219], +[0.1590207647128, 0.2643182487651], +[0.1638939514752, 0.264234659419], +[0.1687719284794, 0.2641476321727], +[0.173654825497, 0.2640570908868], +[0.1785427714275, 0.2639629581612], +[0.1834358942841, 0.2638651554031], +[0.1883343211799, 0.2637636028953], +[0.1932381783138, 0.2636582198651], +[0.1981475909577, 0.2635489245532], +[0.2030626834424, 0.263435634283], +[0.2079835791459, 0.2633182655307], +[0.2129104004793, 0.263196733994], +[0.2178432688753, 0.2630709546628], +[0.2227823047747, 0.2629408418887], +[0.2277276276145, 0.2628063094545], +[0.2326793558147, 0.2626672706449], +[0.237637606766, 0.2625236383154], +[0.2426024968169, 0.2623753249629], +[0.2475741412605, 0.2622222427947], +[0.2525526543217, 0.2620643037982], +[0.2575381491434, 0.2619014198105], +[0.2625307377729, 0.2617335025875], +[0.2675305311478, 0.2615604638729], +[0.2725376390812, 0.2613822154672], +[-0.2697306870981, 0.2662435940612], +[-0.2647304659109, 0.2664143242205], +[-0.2597376811136, 0.2665794394922], +[-0.2547521548495, 0.2667395483835], +[-0.249773774186, 0.2668947401644], +[-0.2448024250631, 0.2670451040813], +[-0.2398379923082, 0.2671907292861], +[-0.2348803596491, 0.2673317047662], +[-0.2299294097274, 0.2674681192733], +[-0.2249850241113, 0.2676000612528], +[-0.220047083309, 0.2677276187722], +[-0.2151154667807, 0.2678508794504], +[-0.2101900529519, 0.2679699303864], +[-0.205270719225, 0.2680848580873], +[-0.2003573419929, 0.2681957483975], +[-0.1954497966505, 0.268302686427], +[-0.1905479576082, 0.2684057564802], +[-0.1856516983043, 0.2685050419842], +[-0.1807608912181, 0.2686006254182], +[-0.175875407883, 0.268692588242], +[-0.1709951189005, 0.2687810108259], +[-0.1661198939534, 0.2688659723797], +[-0.1612496018205, 0.2689475508828], +[-0.1563841103912, 0.269025823015], +[-0.1515232866805, 0.2691008640871], +[-0.1466669968448, 0.2691727479724], +[-0.141815106198, 0.269241547039], +[-0.136967479228, 0.2693073320828], +[-0.1321239796146, 0.2693701722612], +[-0.1272844702468, 0.2694301350278], +[-0.122448813242, 0.2694872860682], +[-0.1176168699652, 0.2695416892369], +[-0.1127885010487, 0.2695934064953], +[-0.1079635664132, 0.269642497851], +[-0.1031419252894, 0.2696890212988], +[-0.09832343623974, 0.2697330327625], +[-0.09350795718185, 0.2697745860395], +[-0.0886953454121, 0.2698137327457], +[-0.08388545763011, 0.2698505222634], +[-0.07907814996404, 0.2698850016902], +[-0.07427327799652, 0.2699172157906], +[-0.06947069679141, 0.2699472069492], +[-0.06467026092119, 0.2699750151262], +[-0.05987182449508, 0.2700006778155], +[-0.05507524118784, 0.2700242300049], +[-0.05028036426912, 0.2700457041385], +[-0.04548704663354, 0.2700651300823], +[-0.04069514083124, 0.2700825350916], +[-0.03590449909901, 0.2700979437819], +[-0.0311149733919, 0.2701113781021], +[-0.02632641541528, 0.2701228573103], +[-0.02153867665728, 0.2701323979529], +[-0.01675160842162, 0.2701400138467], +[-0.01196506186073, 0.2701457160633], +[-0.007178888009083, 0.2701495129171], +[-0.002392937816778, 0.2701514099562], +[0.002392937816778, 0.2701514099562], +[0.007178888009083, 0.2701495129171], +[0.01196506186073, 0.2701457160633], +[0.01675160842162, 0.2701400138467], +[0.02153867665728, 0.2701323979529], +[0.02632641541528, 0.2701228573103], +[0.0311149733919, 0.2701113781021], +[0.03590449909901, 0.2700979437819], +[0.04069514083124, 0.2700825350916], +[0.04548704663354, 0.2700651300823], +[0.05028036426912, 0.2700457041385], +[0.05507524118784, 0.2700242300049], +[0.05987182449508, 0.2700006778155], +[0.06467026092119, 0.2699750151262], +[0.06947069679141, 0.2699472069492], +[0.07427327799652, 0.2699172157906], +[0.07907814996404, 0.2698850016902], +[0.08388545763011, 0.2698505222634], +[0.0886953454121, 0.2698137327457], +[0.09350795718185, 0.2697745860395], +[0.09832343623974, 0.2697330327625], +[0.1031419252894, 0.2696890212988], +[0.1079635664132, 0.269642497851], +[0.1127885010487, 0.2695934064953], +[0.1176168699652, 0.2695416892369], +[0.122448813242, 0.2694872860682], +[0.1272844702468, 0.2694301350278], +[0.1321239796146, 0.2693701722612], +[0.136967479228, 0.2693073320828], +[0.141815106198, 0.269241547039], +[0.1466669968448, 0.2691727479724], +[0.1515232866805, 0.2691008640871], +[0.1563841103912, 0.269025823015], +[0.1612496018205, 0.2689475508828], +[0.1661198939534, 0.2688659723797], +[0.1709951189005, 0.2687810108259], +[0.175875407883, 0.268692588242], +[0.1807608912181, 0.2686006254182], +[0.1856516983043, 0.2685050419842], +[0.1905479576082, 0.2684057564802], +[0.1954497966505, 0.268302686427], +[0.2003573419929, 0.2681957483975], +[0.205270719225, 0.2680848580873], +[0.2101900529519, 0.2679699303864], +[0.2151154667807, 0.2678508794504], +[0.220047083309, 0.2677276187722], +[0.2249850241113, 0.2676000612528], +[0.2299294097274, 0.2674681192733], +[0.2348803596491, 0.2673317047662], +[0.2398379923082, 0.2671907292861], +[0.2448024250631, 0.2670451040813], +[0.249773774186, 0.2668947401644], +[0.2547521548495, 0.2667395483835], +[0.2597376811136, 0.2665794394922], +[0.2647304659109, 0.2664143242205], +[0.2697306885764, 0.2662435937137], +[-0.2669250759764, 0.2711028322317], +[-0.26193208018, 0.2712655161977], +[-0.2569464406398, 0.2714227111678], +[-0.2519681120769, 0.2715750164738], +[-0.246996979548, 0.271722522448], +[-0.2420329269642, 0.2718653193867], +[-0.2370758371064, 0.2720034974778], +[-0.2321255916384, 0.2721371467293], +[-0.2271820711197, 0.2722663568966], +[-0.2222451550185, 0.2723912174106], +[-0.2173147217242, 0.2725118173047], +[-0.2123906485602, 0.2726282451424], +[-0.2074728117959, 0.2727405889442], +[-0.2025610866594, 0.2728489361147], +[-0.1976553473498, 0.2729533733695], +[-0.19275546705, 0.2730539866621], +[-0.1878613179387, 0.2731508611112], +[-0.182972771204, 0.2732440809273], +[-0.1780896970559, 0.2733337293401], +[-0.1732119647399, 0.2734198885258], +[-0.1683394425504, 0.2735026395348], +[-0.1634719978453, 0.2735820622193], +[-0.1586094970596, 0.273658235162], +[-0.1537518057213, 0.2737312356044], +[-0.1488987884661, 0.2738011393763], +[-0.1440503090538, 0.2738680208259], +[-0.1392062303846, 0.2739319527499], +[-0.1343664145169, 0.273993006325], +[-0.1295307226843, 0.2740512510404], +[-0.124699015315, 0.2741067546307], +[-0.1198711520505, 0.2741595830104], +[-0.115046991766, 0.2742098002091], +[-0.1102263925908, 0.2742574683084], +[-0.1054092119303, 0.27430264738], +[-0.1005953064879, 0.2743453954248], +[-0.09578453228867, 0.2743857683149], +[-0.09097674470268, 0.2744238197357], +[-0.08617179847019, 0.2744596011306], +[-0.08136954772703, 0.2744931616478], +[-0.07656984603097, 0.2745245480887], +[-0.07177254638884, 0.2745538048584], +[-0.0669775012844, 0.2745809739186], +[-0.062184562707, 0.2746060947428], +[-0.05739358218093, 0.2746292042736], +[-0.05260441079544, 0.2746503368831], +[-0.04781689923547, 0.274669524335], +[-0.043030897813, 0.2746867957503], +[-0.03824625649896, 0.2747021775749], +[-0.03346282495571, 0.2747156935509], +[-0.02868045257002, 0.2747273646897], +[-0.02389898848648, 0.274737209249], +[-0.01911828164135, 0.2747452427126], +[-0.01433818079671, 0.2747514777726], +[-0.009558534575, 0.2747559243155], +[-0.004779191493643, 0.2747585894111], +[-1.182467644306e-13, 0.2747594773045], +[0.004779191493643, 0.2747585894111], +[0.009558534575, 0.2747559243155], +[0.01433818079671, 0.2747514777726], +[0.01911828164134, 0.2747452427126], +[0.02389898848648, 0.274737209249], +[0.02868045257002, 0.2747273646897], +[0.03346282495571, 0.2747156935509], +[0.03824625649896, 0.2747021775749], +[0.043030897813, 0.2746867957503], +[0.04781689923547, 0.274669524335], +[0.05260441079544, 0.2746503368831], +[0.05739358218093, 0.2746292042736], +[0.06218456270701, 0.2746060947428], +[0.0669775012844, 0.2745809739186], +[0.07177254638884, 0.2745538048584], +[0.07656984603097, 0.2745245480887], +[0.08136954772703, 0.2744931616478], +[0.08617179847019, 0.2744596011306], +[0.09097674470268, 0.2744238197357], +[0.09578453228867, 0.2743857683149], +[0.1005953064879, 0.2743453954248], +[0.1054092119303, 0.27430264738], +[0.1102263925908, 0.2742574683084], +[0.115046991766, 0.2742098002091], +[0.1198711520505, 0.2741595830104], +[0.124699015315, 0.2741067546307], +[0.1295307226843, 0.2740512510404], +[0.1343664145169, 0.273993006325], +[0.1392062303846, 0.2739319527499], +[0.1440503090538, 0.2738680208259], +[0.1488987884661, 0.2738011393763], +[0.1537518057213, 0.2737312356044], +[0.1586094970596, 0.273658235162], +[0.1634719978453, 0.2735820622193], +[0.1683394425504, 0.2735026395348], +[0.1732119647399, 0.2734198885258], +[0.1780896970559, 0.2733337293401], +[0.182972771204, 0.2732440809273], +[0.1878613179387, 0.2731508611112], +[0.19275546705, 0.2730539866621], +[0.1976553473498, 0.2729533733695], +[0.2025610866594, 0.2728489361147], +[0.2074728117959, 0.2727405889442], +[0.2123906485602, 0.2726282451424], +[0.2173147217242, 0.2725118173047], +[0.2222451550185, 0.2723912174106], +[0.2271820711197, 0.2722663568966], +[0.2321255916384, 0.2721371467293], +[0.2370758371064, 0.2720034974778], +[0.2420329269642, 0.2718653193867], +[0.246996979548, 0.271722522448], +[0.2519681120769, 0.2715750164738], +[0.2569464406399, 0.2714227111678], +[0.26193208018, 0.2712655161977], +[0.2669250759787, 0.2711028322312], +[-0.2641210853023, 0.2759593173505], +[-0.2591354662566, 0.2761138808276], +[-0.2541571084936, 0.2762631598768], +[-0.2491861128231, 0.2764076676326], +[-0.244222362273, 0.276547495539], +[-0.23926573871, 0.2766827349904], +[-0.2343161228521, 0.2768134772577], +[-0.2293733942825, 0.2769398134157], +[-0.2244374314619, 0.2770618342687], +[-0.2195081117411, 0.277179630277], +[-0.2145853113736, 0.2772932914825], +[-0.2096689055279, 0.2774029074348], +[-0.2047587682993, 0.2775085671162], +[-0.1998547727229, 0.2776103588671], +[-0.1949567907854, 0.2777083703119], +[-0.1900646934376, 0.2778026882835], +[-0.1851783506073, 0.2778933987489], +[-0.1802976312117, 0.2779805867344], +[-0.1754224031707, 0.2780643362513], +[-0.1705525334204, 0.2781447302211], +[-0.1656878879267, 0.2782218504013], +[-0.1608283316997, 0.2782957773121], +[-0.1559737288084, 0.2783665901623], +[-0.1511239423956, 0.2784343667766], +[-0.1462788346941, 0.278499183523], +[-0.141438267043, 0.2785611152413], +[-0.1366020999045, 0.2786202351714], +[-0.1317701928818, 0.2786766148834], +[-0.1269424047375, 0.2787303242082], +[-0.122118593413, 0.2787814311693], +[-0.1172986160479, 0.2788300019148], +[-0.1124823290014, 0.2788761006526], +[-0.1076695878733, 0.2789197895844], +[-0.102860247527, 0.2789611288436], +[-0.0980541621121, 0.2790001764328], +[-0.09325118508902, 0.2790369881642], +[-0.08845116925367, 0.2790716176012], +[-0.08365396676338, 0.2791041160019], +[-0.0788594291635, 0.2791345322652], +[-0.07406740741492, 0.2791629128779], +[-0.0692777519224, 0.2791893018653], +[-0.06449031256367, 0.2792137407427], +[-0.05970493871937, 0.279236268471], +[-0.05492147930371, 0.2792569214132], +[-0.05013978279585, 0.2792757332945], +[-0.04535969727199, 0.2792927351651], +[-0.0405810704381, 0.2793079553649], +[-0.03580374966326, 0.2793214194925], +[-0.03102758201352, 0.2793331503756], +[-0.02625241428637, 0.279343168046], +[-0.02147809304556, 0.2793514897162], +[-0.01670446465635, 0.27935812976], +[-0.01193137532116, 0.2793630996965], +[-0.007158671115436, 0.2793664081763], +[-0.002386198023782, 0.2793680609723], +[0.002386198023782, 0.2793680609723], +[0.007158671115436, 0.2793664081763], +[0.01193137532116, 0.2793630996965], +[0.01670446465635, 0.27935812976], +[0.02147809304556, 0.2793514897162], +[0.02625241428637, 0.279343168046], +[0.03102758201352, 0.2793331503756], +[0.03580374966326, 0.2793214194925], +[0.0405810704381, 0.2793079553649], +[0.04535969727199, 0.2792927351651], +[0.05013978279585, 0.2792757332945], +[0.05492147930371, 0.2792569214132], +[0.05970493871937, 0.279236268471], +[0.06449031256367, 0.2792137407427], +[0.0692777519224, 0.2791893018653], +[0.07406740741492, 0.2791629128779], +[0.0788594291635, 0.2791345322652], +[0.08365396676338, 0.2791041160019], +[0.08845116925367, 0.2790716176012], +[0.09325118508902, 0.2790369881642], +[0.0980541621121, 0.2790001764328], +[0.102860247527, 0.2789611288436], +[0.1076695878733, 0.2789197895844], +[0.1124823290014, 0.2788761006526], +[0.1172986160479, 0.2788300019148], +[0.122118593413, 0.2787814311693], +[0.1269424047375, 0.2787303242082], +[0.1317701928817, 0.2786766148833], +[0.1366020999045, 0.2786202351714], +[0.141438267043, 0.2785611152413], +[0.1462788346941, 0.278499183523], +[0.1511239423956, 0.2784343667766], +[0.1559737288084, 0.2783665901623], +[0.1608283316997, 0.2782957773121], +[0.1656878879267, 0.2782218504013], +[0.1705525334204, 0.2781447302211], +[0.1754224031707, 0.2780643362513], +[0.1802976312117, 0.2779805867344], +[0.1851783506073, 0.2778933987489], +[0.1900646934376, 0.2778026882835], +[0.1949567907854, 0.2777083703119], +[0.1998547727229, 0.2776103588671], +[0.2047587682993, 0.2775085671162], +[0.2096689055279, 0.2774029074348], +[0.2145853113736, 0.2772932914825], +[0.2195081117411, 0.277179630277], +[0.2244374314619, 0.2770618342687], +[0.2293733942825, 0.2769398134157], +[0.2343161228521, 0.2768134772577], +[0.23926573871, 0.2766827349904], +[0.244222362273, 0.276547495539], +[0.2491861128231, 0.2764076676326], +[0.2541571084936, 0.2762631598768], +[0.2591354662566, 0.2761138808276], +[0.2641210724705, 0.27595928896], +[-0.2613193906592, 0.280812637883], +[-0.2563407167925, 0.2809592585849], +[-0.2513697772044, 0.2811006273335], +[-0.2464062495066, 0.2812373448646], +[-0.2414500146836, 0.2813695037837], +[-0.2365009525409, 0.2814971966317], +[-0.2315589417176, 0.2816205158104], +[-0.2266238596997, 0.2817395535076], +[-0.221695582832, 0.2818544016222], +[-0.2167739863308, 0.2819651516883], +[-0.211858944296, 0.2820718947993], +[-0.206950329723, 0.2821747215325], +[-0.2020480145148, 0.2822737218725], +[-0.1971518694944, 0.2823689851349], +[-0.1922617644165, 0.2824605998899], +[-0.1873775679802, 0.2825486538858], +[-0.1824991478414, 0.2826332339724], +[-0.1776263706256, 0.2827144260244], +[-0.172759101941, 0.2827923148652], +[-0.1678972063922, 0.2828669841907], +[-0.1630405475939, 0.2829385164929], +[-0.1581889881853, 0.2830069929845], +[-0.1533423898452, 0.2830724935239], +[-0.1485006133074, 0.2831350965395], +[-0.1436635183769, 0.2831948789563], +[-0.1388309639467, 0.2832519161219], +[-0.1340028080151, 0.2833062817337], +[-0.1291789077043, 0.2833580477668], +[-0.1243591192791, 0.2834072844031], +[-0.119543298167, 0.2834540599614], +[-0.1147312989787, 0.2834984408282], +[-0.1099229755297, 0.2835404913907], +[-0.1051181808626, 0.2835802739702], +[-0.1003167672706, 0.2836178487577], +[-0.09551858632161, 0.2836532737513], +[-0.09072348888329, 0.2836866046942], +[-0.08593132514918, 0.283717895016], +[-0.08114194466557, 0.2837471957751], +[-0.07635519635939, 0.2837745556035], +[-0.0715709285669, 0.2838000206537], +[-0.06678898906328, 0.2838236345481], +[-0.06200922509308, 0.2838454383306], +[-0.05723148340151, 0.283865470421], +[-0.05245561026643, 0.2838837665721], +[-0.04768145153124, 0.283900359829], +[-0.04290885263832, 0.283915280492], +[-0.03813765866329, 0.2839285560821], +[-0.03336771434979, 0.2839402113093], +[-0.02859886414488, 0.2839502680443], +[-0.02383095223497, 0.2839587452933], +[-0.01906382258212, 0.283965659176], +[-0.01429731896088, 0.283971022907], +[-0.009531284995351, 0.2839748467802], +[-0.004765564196548, 0.2839771381572], +[-1.666855817479e-13, 0.2839779014582], +[0.004765564196548, 0.2839771381572], +[0.009531284995352, 0.2839748467802], +[0.01429731896088, 0.283971022907], +[0.01906382258212, 0.283965659176], +[0.02383095223497, 0.2839587452933], +[0.02859886414488, 0.2839502680443], +[0.03336771434979, 0.2839402113093], +[0.03813765866329, 0.2839285560821], +[0.04290885263832, 0.283915280492], +[0.04768145153124, 0.283900359829], +[0.05245561026643, 0.2838837665721], +[0.05723148340151, 0.283865470421], +[0.06200922509308, 0.2838454383306], +[0.06678898906328, 0.2838236345481], +[0.0715709285669, 0.2838000206537], +[0.07635519635939, 0.2837745556035], +[0.08114194466557, 0.2837471957751], +[0.08593132514918, 0.283717895016], +[0.09072348888329, 0.2836866046942], +[0.09551858632161, 0.2836532737513], +[0.1003167672706, 0.2836178487577], +[0.1051181808626, 0.2835802739702], +[0.1099229755297, 0.2835404913907], +[0.1147312989787, 0.2834984408282], +[0.119543298167, 0.2834540599614], +[0.1243591192791, 0.2834072844031], +[0.1291789077043, 0.2833580477668], +[0.1340028080151, 0.2833062817337], +[0.1388309639467, 0.2832519161219], +[0.1436635183769, 0.2831948789563], +[0.1485006133074, 0.2831350965395], +[0.1533423898452, 0.2830724935239], +[0.1581889881853, 0.2830069929845], +[0.1630405475939, 0.2829385164929], +[0.1678972063922, 0.2828669841907], +[0.172759101941, 0.2827923148652], +[0.1776263706256, 0.2827144260244], +[0.1824991478414, 0.2826332339724], +[0.1873775679802, 0.2825486538858], +[0.1922617644165, 0.2824605998899], +[0.1971518694944, 0.2823689851349], +[0.2020480145148, 0.2822737218725], +[0.206950329723, 0.2821747215325], +[0.211858944296, 0.2820718947993], +[0.2167739863308, 0.2819651516883], +[0.221695582832, 0.2818544016222], +[0.2266238596997, 0.2817395535076], +[0.2315589417176, 0.2816205158104], +[0.2365009525409, 0.2814971966317], +[0.2414500146836, 0.2813695037837], +[0.2464062495065, 0.2812373448646], +[0.2513697772044, 0.2811006273335], +[0.2563407167925, 0.2809592585849], +[0.2613193915206, 0.2808126377354], +[-0.2585188901651, 0.2856634008485], +[-0.2535479248109, 0.2858014893619], +[-0.2485845397072, 0.2859349546704], +[-0.2436286149895, 0.2860638905947], +[-0.238680029583, 0.2861883909513], +[-0.2337386612158, 0.2863085494771], +[-0.2288043864321, 0.2864244597527], +[-0.2238770806038, 0.2865362151264], +[-0.218956617943, 0.2866439086372], +[-0.2140428715139, 0.2867476329375], +[-0.2091357132449, 0.2868474802162], +[-0.2042350139401, 0.2869435421204], +[-0.1993406432912, 0.2870359096775], +[-0.1944524698895, 0.2871246732176], +[-0.1895703612379, 0.2872099222946], +[-0.1846941837631, 0.2872917456082], +[-0.179823802828, 0.2873702309255], +[-0.1749590827446, 0.2874454650022], +[-0.1700998867871, 0.287517533505], +[-0.1652460772054, 0.2875865209326], +[-0.1603975152395, 0.2876525105386], +[-0.1555540611334, 0.2877155842533], +[-0.1507155741512, 0.2877758226069], +[-0.145881912592, 0.2878333046525], +[-0.1410529338072, 0.2878881078899], +[-0.1362284942172, 0.2879403081907], +[-0.1314084493294, 0.2879899797229], +[-0.1265926537576, 0.2880371948778], +[-0.1217809612409, 0.2880820241965], +[-0.1169732246647, 0.2881245362989], +[-0.1121692960821, 0.2881647978131], +[-0.1073690267359, 0.288202873306], +[-0.1025722670825, 0.288238825216], +[-0.09777886681566, 0.2882727137872], +[-0.09298867489187, 0.2883045970047], +[-0.08820153955664, 0.2883345305324], +[-0.08341730837155, 0.2883625676524], +[-0.07863582824248, 0.288388759207], +[-0.0738569454486, 0.2884131535421], +[-0.06908050567246, 0.2884357964538], +[-0.06430635403091, 0.2884567311367], +[-0.0595343351069, 0.2884759981355], +[-0.05476429298225, 0.2884936352988], +[-0.04999607127109, 0.2885096777354], +[-0.04522951315421, 0.2885241577748], +[-0.04046446141408, 0.288537104929], +[-0.03570075847061, 0.2885485458585], +[-0.03093824641751, 0.2885585043415], +[-0.02617676705925, 0.2885670012454], +[-0.02141616194855, 0.2885740545028], +[-0.0166562724243, 0.28857967909], +[-0.0118969396499, 0.2885838870094], +[-0.007138004651916, 0.2885866872755], +[-0.002379308359006, 0.2885880859038], +[0.002379308359006, 0.2885880859038], +[0.007138004651916, 0.2885866872755], +[0.0118969396499, 0.2885838870094], +[0.0166562724243, 0.28857967909], +[0.02141616194855, 0.2885740545028], +[0.02617676705925, 0.2885670012454], +[0.03093824641751, 0.2885585043415], +[0.03570075847061, 0.2885485458585], +[0.04046446141408, 0.288537104929], +[0.04522951315421, 0.2885241577748], +[0.04999607127109, 0.2885096777354], +[0.05476429298225, 0.2884936352988], +[0.0595343351069, 0.2884759981355], +[0.06430635403091, 0.2884567311367], +[0.06908050567246, 0.2884357964538], +[0.0738569454486, 0.2884131535421], +[0.07863582824248, 0.288388759207], +[0.08341730837155, 0.2883625676524], +[0.08820153955664, 0.2883345305324], +[0.09298867489187, 0.2883045970047], +[0.09777886681567, 0.2882727137872], +[0.1025722670825, 0.288238825216], +[0.1073690267359, 0.288202873306], +[0.1121692960821, 0.2881647978131], +[0.1169732246647, 0.2881245362989], +[0.1217809612409, 0.2880820241965], +[0.1265926537576, 0.2880371948778], +[0.1314084493294, 0.2879899797229], +[0.1362284942172, 0.2879403081907], +[0.1410529338072, 0.2878881078899], +[0.145881912592, 0.2878333046525], +[0.1507155741512, 0.2877758226069], +[0.1555540611334, 0.2877155842533], +[0.1603975152395, 0.2876525105386], +[0.1652460772054, 0.2875865209326], +[0.1700998867871, 0.287517533505], +[0.1749590827446, 0.2874454650022], +[0.179823802828, 0.2873702309255], +[0.1846941837631, 0.2872917456082], +[0.1895703612379, 0.2872099222946], +[0.1944524698895, 0.2871246732176], +[0.1993406432912, 0.2870359096775], +[0.2042350139401, 0.2869435421204], +[0.2091357132449, 0.2868474802162], +[0.2140428715139, 0.2867476329375], +[0.218956617943, 0.2866439086372], +[0.2238770806038, 0.2865362151264], +[0.2288043864321, 0.2864244597527], +[0.2337386612158, 0.2863085494771], +[0.238680029583, 0.2861883909513], +[0.2436286149895, 0.2860638905947], +[0.2485845397072, 0.2859349546704], +[0.2535479248109, 0.2858014893619], +[0.2585188901651, 0.2856634008485], +[-0.2557204804104, 0.2905098113974], +[-0.2507571837271, 0.2906404124333], +[-0.2458014893669, 0.2907659824035], +[-0.2408533026007, 0.2908871466329], +[-0.2359125002789, 0.2910040001998], +[-0.2309789580371, 0.2911166380865], +[-0.2260525503073, 0.2912251551012], +[-0.221133150331, 0.2913296458001], +[-0.2162206301704, 0.2914302044088], +[-0.21131486072, 0.2915269247436], +[-0.2064157117185, 0.2916199001321], +[-0.2015230517597, 0.291709223334], +[-0.1966367483048, 0.2917949864609], +[-0.1917566676934, 0.2918772808967], +[-0.186882675156, 0.2919561972171], +[-0.1820146348256, 0.2920318251098], +[-0.1771524097502, 0.2921042532934], +[-0.1722958619057, 0.2921735694377], +[-0.167444852209, 0.2922398600832], +[-0.1625992405315, 0.2923032105607], +[-0.1577588857137, 0.2923637049119], +[-0.1529236455794, 0.2924214258094], +[-0.1480933769516, 0.2924764544777], +[-0.1432679356687, 0.2925288706145], +[-0.138447176601, 0.2925787523125], +[-0.1336309536685, 0.2926261759822], +[-0.1288191198599, 0.2926712162752], +[-0.1240115272513, 0.2927139460088], +[-0.119208027027, 0.2927544360911], +[-0.1144084695008, 0.2927927554479], +[-0.1096127041379, 0.2928289709505], +[-0.1048205795784, 0.2928631473452], +[-0.1000319436616, 0.2928953471837], +[-0.095246643451, 0.2929256307564], +[-0.09046452526091, 0.2929540560261], +[-0.08568543468362, 0.2929806785649], +[-0.08090921661785, 0.2930055514923], +[-0.07613571529813, 0.2930287254158], +[-0.07136477432521, 0.2930502483741], +[-0.06659623669748, 0.2930701657826], +[-0.06182994484333, 0.293088520381], +[-0.05706574065443, 0.2931053521846], +[-0.05230346551999, 0.2931206984376], +[-0.04754296036179, 0.2931345935696], +[-0.04278406567006, 0.2931470691552], +[-0.03802662154018, 0.2931581538772], +[-0.03327046770996, 0.2931678734918], +[-0.02851544359773, 0.2931762507985], +[-0.0237613883409, 0.2931833056127], +[-0.01900814083512, 0.2931890547418], +[-0.01425553977382, 0.2931935119652], +[-0.009503423688244, 0.2931966880175], +[-0.004751630987681, 0.2931985905756], +[0, 0.2931992242492], +[0.004751630987681, 0.2931985905756], +[0.009503423688244, 0.2931966880175], +[0.01425553977382, 0.2931935119652], +[0.01900814083512, 0.2931890547418], +[0.0237613883409, 0.2931833056127], +[0.02851544359773, 0.2931762507985], +[0.03327046770996, 0.2931678734918], +[0.03802662154018, 0.2931581538772], +[0.04278406567006, 0.2931470691552], +[0.04754296036179, 0.2931345935696], +[0.05230346551999, 0.2931206984376], +[0.05706574065443, 0.2931053521846], +[0.06182994484333, 0.293088520381], +[0.06659623669748, 0.2930701657826], +[0.07136477432521, 0.2930502483741], +[0.07613571529813, 0.2930287254158], +[0.08090921661785, 0.2930055514923], +[0.08568543468362, 0.2929806785649], +[0.09046452526091, 0.2929540560261], +[0.095246643451, 0.2929256307564], +[0.1000319436616, 0.2928953471837], +[0.1048205795784, 0.2928631473452], +[0.1096127041379, 0.2928289709505], +[0.1144084695008, 0.2927927554479], +[0.119208027027, 0.2927544360911], +[0.1240115272513, 0.2927139460088], +[0.1288191198599, 0.2926712162752], +[0.1336309536685, 0.2926261759822], +[0.138447176601, 0.2925787523125], +[0.1432679356687, 0.2925288706145], +[0.1480933769516, 0.2924764544777], +[0.1529236455794, 0.2924214258094], +[0.1577588857137, 0.2923637049119], +[0.1625992405315, 0.2923032105607], +[0.167444852209, 0.2922398600832], +[0.1722958619057, 0.2921735694377], +[0.1771524097502, 0.2921042532934], +[0.1820146348256, 0.2920318251098], +[0.186882675156, 0.2919561972171], +[0.1917566676934, 0.2918772808967], +[0.1966367483048, 0.2917949864609], +[0.2015230517597, 0.291709223334], +[0.2064157117185, 0.2916199001321], +[0.21131486072, 0.2915269247436], +[0.2162206301704, 0.2914302044088], +[0.221133150331, 0.2913296458001], +[0.2260525503073, 0.2912251551012], +[0.2309789580371, 0.2911166380865], +[0.235912500279, 0.2910040001998], +[0.2408533026007, 0.2908871466329], +[0.2458014893669, 0.2907659824035], +[0.2507571837271, 0.2906404124333], +[0.2557204814104, 0.2905098112903], +[-0.2529244030346, 0.2953533326191], +[-0.2479685873712, 0.29547586642], +[-0.2430207199999, 0.2955935503964], +[-0.2380804061591, 0.2957069541395], +[-0.2331475206089, 0.2958161740411], +[-0.2282219368758, 0.2959213063789], +[-0.2233035272641, 0.2960224472379], +[-0.2183921628677, 0.2961196924303], +[-0.2134877135815, 0.2962131374155], +[-0.2085900481123, 0.2963028772191], +[-0.2036990339904, 0.2963890063522], +[-0.1988145375803, 0.2964716187297], +[-0.1939364240927, 0.2965508075891], +[-0.1890645575951, 0.296626665408], +[-0.184198801024, 0.2966992838225], +[-0.1793390161968, 0.2967687535443], +[-0.174485063824, 0.2968351642789], +[-0.1696368035219, 0.2968986046427], +[-0.1647940938257, 0.296959162081], +[-0.1599567922036, 0.2970169227857], +[-0.1551247550705, 0.2970719716131], +[-0.1502978378039, 0.2971243920025], +[-0.1454758947587, 0.2971742658951], +[-0.1406587792844, 0.2972216736526], +[-0.1358463437418, 0.2972666939778], +[-0.1310384395219, 0.2973094038349], +[-0.1262349170643, 0.2973498783711], +[-0.1214356258777, 0.297388190839], +[-0.1166404145608, 0.2974244125202], +[-0.1118491308245, 0.2974586126502], +[-0.1070616215148, 0.2974908583443], +[-0.1022777326369, 0.2975212145259], +[-0.09749730938102, 0.2975497438551], +[-0.09272019614814, 0.2975765066602], +[-0.08794623657782, 0.297601560871], +[-0.08317527357667, 0.2976249619532], +[-0.07840714934807, 0.2976467628463], +[-0.07364170542284, 0.2976670139029], +[-0.06887878269114, 0.297685762831], +[-0.06411822143533, 0.2977030546384], +[-0.05935986136382, 0.2977189315805], +[-0.05460354164597, 0.2977334331106], +[-0.04984910094788, 0.2977465958328], +[-0.0450963774691, 0.2977584534589], +[-0.04034520898023, 0.2977690367675], +[-0.03559543286117, 0.2977783735676], +[-0.03084688614027, 0.2977864886642], +[-0.02609940553404, 0.2977934038289], +[-0.0213528274875, 0.2977991377725], +[-0.01660698821502, 0.297803706123], +[-0.01186172374164, 0.2978071214058], +[-0.007116869944753, 0.2978093930286], +[-0.002372262596095, 0.2978105272694], +[0.002372262596095, 0.2978105272694], +[0.007116869944753, 0.2978093930286], +[0.01186172374164, 0.2978071214058], +[0.01660698821502, 0.297803706123], +[0.0213528274875, 0.2977991377725], +[0.02609940553404, 0.2977934038289], +[0.03084688614027, 0.2977864886642], +[0.03559543286117, 0.2977783735676], +[0.04034520898023, 0.2977690367675], +[0.0450963774691, 0.2977584534589], +[0.04984910094788, 0.2977465958328], +[0.05460354164597, 0.2977334331106], +[0.05935986136382, 0.2977189315805], +[0.06411822143533, 0.2977030546384], +[0.06887878269114, 0.297685762831], +[0.07364170542284, 0.2976670139029], +[0.07840714934807, 0.2976467628463], +[0.08317527357667, 0.2976249619532], +[0.08794623657782, 0.297601560871], +[0.09272019614814, 0.2975765066602], +[0.09749730938102, 0.2975497438551], +[0.1022777326369, 0.2975212145259], +[0.1070616215148, 0.2974908583443], +[0.1118491308245, 0.2974586126502], +[0.1166404145608, 0.2974244125202], +[0.1214356258777, 0.297388190839], +[0.1262349170643, 0.2973498783711], +[0.1310384395219, 0.2973094038349], +[0.1358463437418, 0.2972666939778], +[0.1406587792844, 0.2972216736526], +[0.1454758947587, 0.2971742658951], +[0.1502978378039, 0.2971243920025], +[0.1551247550705, 0.2970719716131], +[0.1599567922036, 0.2970169227857], +[0.1647940938257, 0.296959162081], +[0.1696368035219, 0.2968986046427], +[0.174485063824, 0.2968351642789], +[0.1793390161968, 0.2967687535443], +[0.184198801024, 0.2966992838225], +[0.1890645575951, 0.296626665408], +[0.1939364240927, 0.2965508075891], +[0.1988145375803, 0.2964716187297], +[0.2036990339904, 0.2963890063522], +[0.2085900481123, 0.2963028772191], +[0.2134877135815, 0.2962131374155], +[0.2183921628677, 0.2961196924303], +[0.2233035272641, 0.2960224472379], +[0.2282219368758, 0.2959213063789], +[0.2331475206089, 0.2958161740411], +[0.2380804061591, 0.2957069541395], +[0.2430207199999, 0.2955935503964], +[0.2479685873712, 0.29547586642], +[0.2529244036048, 0.2953533325583], +[-0.2501296868411, 0.3001931429899], +[-0.2451822300092, 0.300307689253], +[-0.2402423258977, 0.300417497824], +[-0.235310019998, 0.3005231535893], +[-0.2303851849644, 0.3006247543056], +[-0.2254676921981, 0.3007223975973], +[-0.2205574118601, 0.300816180876], +[-0.2156542128789, 0.3009062012587], +[-0.2107579629645, 0.3009925554859], +[-0.2058685286178, 0.301075339839], +[-0.2009857751417, 0.3011546500572], +[-0.1961095666517, 0.3012305812546], +[-0.1912397660872, 0.3013032278362], +[-0.1863762352226, 0.3013726834139], +[-0.1815188346785, 0.3014390407225], +[-0.1766674239338, 0.301502391535], +[-0.1718218613377, 0.3015628265783], +[-0.1669820041224, 0.3016204354489], +[-0.1621477084164, 0.3016753065277], +[-0.1573188292582, 0.3017275268962], +[-0.152495220611, 0.3017771822523], +[-0.1476767353775, 0.3018243568261], +[-0.1428632254165, 0.301869133297], +[-0.1380545415593, 0.3019115927103], +[-0.1332505336277, 0.3019518143956], +[-0.1284510504525, 0.3019898758846], +[-0.1236559398937, 0.3020258528315], +[-0.1188650488606, 0.3020598189325], +[-0.114078223334, 0.3020918458483], +[-0.1092953083892, 0.3021220031266], +[-0.1045161482196, 0.3021503581264], +[-0.09974058616252, 0.3021769759445], +[-0.094968464725, 0.3022019193428], +[-0.09019962561161, 0.302225248678], +[-0.08543390975317, 0.3022470218335], +[-0.08067115733633, 0.3022672941526], +[-0.07591120783519, 0.3022861183755], +[-0.07115390004294, 0.3023035445771], +[-0.06639907210546, 0.3023196201089], +[-0.06164656155567, 0.3023343895423], +[-0.05689620534908, 0.3023478946162], +[-0.05214783990028, 0.3023601741864], +[-0.04740130112043, 0.3023712641787], +[-0.04265642445576, 0.3023811975454], +[-0.03791304492682, 0.302390004225], +[-0.03317099716866, 0.3023977111051], +[-0.02843011547168, 0.3024043419896], +[-0.02369023382318, 0.3024099175691], +[-0.01895118594955, 0.3024144553949], +[-0.01421280535891, 0.3024179698572], +[-0.009474925384217, 0.3024204721673], +[-0.00473737922679, 0.3024219703433], +[-2.229268384095e-16, 0.3024224692001], +[0.00473737922679, 0.3024219703433], +[0.009474925384217, 0.3024204721673], +[0.01421280535891, 0.3024179698572], +[0.01895118594955, 0.3024144553949], +[0.02369023382318, 0.3024099175691], +[0.02843011547168, 0.3024043419896], +[0.03317099716866, 0.3023977111051], +[0.03791304492682, 0.302390004225], +[0.04265642445576, 0.3023811975454], +[0.04740130112043, 0.3023712641787], +[0.05214783990028, 0.3023601741864], +[0.05689620534908, 0.3023478946162], +[0.06164656155567, 0.3023343895423], +[0.06639907210546, 0.3023196201089], +[0.07115390004294, 0.3023035445771], +[0.07591120783519, 0.3022861183755], +[0.08067115733633, 0.3022672941526], +[0.08543390975317, 0.3022470218335], +[0.09019962561161, 0.302225248678], +[0.094968464725, 0.3022019193428], +[0.09974058616252, 0.3021769759445], +[0.1045161482196, 0.3021503581264], +[0.1092953083892, 0.3021220031266], +[0.114078223334, 0.3020918458483], +[0.1188650488606, 0.3020598189325], +[0.1236559398937, 0.3020258528315], +[0.1284510504525, 0.3019898758846], +[0.1332505336277, 0.3019518143956], +[0.1380545415593, 0.3019115927103], +[0.1428632254165, 0.301869133297], +[0.1476767353775, 0.3018243568261], +[0.152495220611, 0.3017771822523], +[0.1573188292582, 0.3017275268962], +[0.1621477084164, 0.3016753065277], +[0.1669820041223, 0.3016204354489], +[0.1718218613377, 0.3015628265783], +[0.1766674239338, 0.301502391535], +[0.1815188346785, 0.3014390407225], +[0.1863762352226, 0.3013726834139], +[0.1912397660872, 0.3013032278362], +[0.1961095666517, 0.3012305812546], +[0.2009857751417, 0.3011546500572], +[0.2058685286178, 0.301075339839], +[0.2107579629645, 0.3009925554859], +[0.2156542128789, 0.3009062012587], +[0.2205574118601, 0.300816180876], +[0.2254676921983, 0.3007223975973], +[0.2303851849644, 0.3006247543056], +[0.235310019998, 0.3005231535893], +[0.2402423258977, 0.300417497824], +[0.2451822300092, 0.300307689253], +[0.2501296877648, 0.3001931429519], +[-0.2473378809071, 0.3050291236834], +[-0.2423982063667, 0.3051357181355], +[-0.237466401851, 0.3052376631355], +[-0.2325422389903, 0.3053355847343], +[-0.2276255883178, 0.3054295821059], +[-0.2227163190942, 0.3055197542732], +[-0.2178142993184, 0.3056062000248], +[-0.2129193957381, 0.3056890178321], +[-0.2080314738599, 0.3057683057648], +[-0.2031503979599, 0.3058441614069], +[-0.1982760310942, 0.3059166817715], +[-0.1934082351089, 0.3059859632157], +[-0.1885468706513, 0.3060521013544], +[-0.1836917971802, 0.3061151909746], +[-0.1788428729777, 0.3061753259489], +[-0.1739999551603, 0.3062325991487], +[-0.1691628996914, 0.3062871023579], +[-0.1643315613938, 0.3063389261856], +[-0.1595057939625, 0.3063881599798], +[-0.1546854499794, 0.3064348917403], +[-0.1498703809273, 0.3064792080328], +[-0.1450604372058, 0.3065211939024], +[-0.1402554681474, 0.3065609327881], +[-0.1354553220347, 0.3065985064377], +[-0.1306598461189, 0.3066339948236], +[-0.125868886639, 0.3066674760585], +[-0.1210822888422, 0.3066990263138], +[-0.1162998970053, 0.3067287197371], +[-0.1115215544572, 0.3067566283724], +[-0.1067471036031, 0.3067828220809], +[-0.1019763859494, 0.3068073684637], +[-0.0972092421297, 0.3068303327859], +[-0.09244551193281, 0.3068517779029], +[-0.08768503433113, 0.3068717641882], +[-0.08292764751084, 0.3068903494639], +[-0.07817318890317, 0.306907588933], +[-0.07342149521693, 0.3069235351143], +[-0.06867240247219, 0.3069382377806], +[-0.06392574603527, 0.3069517438982], +[-0.05918136065478, 0.3069640975708], +[-0.05443908049885, 0.3069753399855], +[-0.04969873919341, 0.3069855093628], +[-0.04496016986149, 0.3069946409087], +[-0.04022320516352, 0.3070027667716], +[-0.03548767733847, 0.307009916002], +[-0.03075341824591, 0.307016114516], +[-0.02602025940876, 0.3070213850628], +[-0.02128803205677, 0.3070257471958], +[-0.01655656717057, 0.3070292172476], +[-0.01182569552624, 0.3070318083095], +[-0.007095247740346, 0.3070335302146], +[-0.00236505431526, 0.3070343895256], +[0.00236505431526, 0.3070343895256], +[0.007095247740345, 0.3070335302146], +[0.01182569552624, 0.3070318083095], +[0.01655656717056, 0.3070292172476], +[0.02128803205677, 0.3070257471958], +[0.02602025940876, 0.3070213850628], +[0.03075341824591, 0.307016114516], +[0.03548767733847, 0.307009916002], +[0.04022320516352, 0.3070027667716], +[0.04496016986149, 0.3069946409087], +[0.04969873919341, 0.3069855093628], +[0.05443908049885, 0.3069753399855], +[0.05918136065478, 0.3069640975708], +[0.06392574603527, 0.3069517438982], +[0.06867240247219, 0.3069382377806], +[0.07342149521693, 0.3069235351143], +[0.07817318890317, 0.306907588933], +[0.08292764751084, 0.3068903494639], +[0.08768503433113, 0.3068717641882], +[0.09244551193281, 0.3068517779029], +[0.0972092421297, 0.3068303327859], +[0.1019763859494, 0.3068073684637], +[0.1067471036031, 0.3067828220809], +[0.1115215544572, 0.3067566283724], +[0.1162998970053, 0.3067287197371], +[0.1210822888422, 0.3066990263138], +[0.125868886639, 0.3066674760585], +[0.1306598461189, 0.3066339948236], +[0.1354553220347, 0.3065985064377], +[0.1402554681474, 0.3065609327881], +[0.1450604372058, 0.3065211939024], +[0.1498703809273, 0.3064792080328], +[0.1546854499794, 0.3064348917403], +[0.1595057939625, 0.3063881599798], +[0.1643315613938, 0.3063389261856], +[0.1691628996914, 0.3062871023579], +[0.1739999551603, 0.3062325991487], +[0.1788428729777, 0.3061753259489], +[0.1836917971802, 0.3061151909746], +[0.1885468706513, 0.3060521013544], +[0.1934082351089, 0.3059859632157], +[0.1982760310942, 0.3059166817715], +[0.2031503979599, 0.3058441614069], +[0.2080314738599, 0.3057683057648], +[0.2129193957381, 0.3056890178321], +[0.2178142993184, 0.3056062000248], +[0.2227163190942, 0.3055197542732], +[0.2276255883178, 0.3054295821059], +[0.2325422389903, 0.3053355847343], +[0.237466401851, 0.3052376631355], +[0.2423982063667, 0.3051357181355], +[0.2473378815706, 0.3050291236565], +[-0.2445478050262, 0.3098612418056], +[-0.239616611652, 0.3099597895046], +[-0.2346930431738, 0.3100538840163], +[-0.229777158574, 0.3101440865663], +[-0.2248688262492, 0.3102304977995], +[-0.219967913303, 0.3103132181895], +[-0.2150742855564, 0.3103923479537], +[-0.2101878075576, 0.3104679869674], +[-0.2053083425918, 0.310540234679], +[-0.2004357526912, 0.3106091900223], +[-0.1955698986448, 0.3106749513306], +[-0.1907106400085, 0.3107376162484], +[-0.1858578351154, 0.3107972816436], +[-0.1810113410861, 0.3108540435197], +[-0.1761710138403, 0.3109079969262], +[-0.1713367081076, 0.3109592358707], +[-0.1665082774398, 0.3110078532292], +[-0.1616855742232, 0.3110539406572], +[-0.1568684496923, 0.3110975885005], +[-0.1520567539434, 0.3111388857062], +[-0.1472503359499, 0.311177919734], +[-0.1424490435772, 0.3112147764677], +[-0.1376527236006, 0.3112495401272], +[-0.1328612217218, 0.3112822931811], +[-0.1280743825885, 0.3113131162598], +[-0.1232920498141, 0.3113420880701], +[-0.1185140659986, 0.3113692853098], +[-0.113740272751, 0.3113947825845], +[-0.108970510713, 0.3114186523248], +[-0.1042046195834, 0.3114409647055], +[-0.09944243814468, 0.3114617875665], +[-0.09468380429018, 0.3114811863346], +[-0.08992855505291, 0.3114992239487], +[-0.0851765266357, 0.3115159607857], +[-0.08042755444261, 0.3115314545895], +[-0.07568147311173, 0.311545760402], +[-0.07093811654927, 0.3115589304974], +[-0.06619731796491, 0.3115710143182], +[-0.06145890990843, 0.3115820584152], +[-0.0567227243076, 0.3115921063896], +[-0.05198859250719, 0.3116011988395], +[-0.04725634530907, 0.3116093733083], +[-0.04252581301353, 0.3116166642381], +[-0.03779682546139, 0.3116231029256], +[-0.03306921207724, 0.3116287174824], +[-0.02834280191339, 0.311633532799], +[-0.02361742369467, 0.311637570513], +[-0.01889290586392, 0.3116408489807], +[-0.01416907662801, 0.3116433832536], +[-0.009445764004482, 0.3116451850588], +[-0.004722795868463, 0.3116462627839], +[-2.380221700389e-13, 0.3116466214657], +[0.004722795868463, 0.3116462627839], +[0.009445764004482, 0.3116451850588], +[0.01416907662801, 0.3116433832536], +[0.01889290586392, 0.3116408489807], +[0.02361742369467, 0.311637570513], +[0.02834280191339, 0.311633532799], +[0.03306921207724, 0.3116287174824], +[0.03779682546139, 0.3116231029256], +[0.04252581301353, 0.3116166642381], +[0.04725634530907, 0.3116093733083], +[0.05198859250719, 0.3116011988395], +[0.0567227243076, 0.3115921063896], +[0.06145890990843, 0.3115820584152], +[0.06619731796491, 0.3115710143182], +[0.07093811654927, 0.3115589304974], +[0.07568147311173, 0.311545760402], +[0.08042755444261, 0.3115314545895], +[0.0851765266357, 0.3115159607857], +[0.08992855505291, 0.3114992239487], +[0.09468380429018, 0.3114811863346], +[0.09944243814468, 0.3114617875665], +[0.1042046195834, 0.3114409647055], +[0.108970510713, 0.3114186523248], +[0.113740272751, 0.3113947825845], +[0.1185140659986, 0.3113692853098], +[0.1232920498141, 0.3113420880701], +[0.1280743825885, 0.3113131162598], +[0.1328612217218, 0.3112822931811], +[0.1376527236006, 0.3112495401272], +[0.1424490435772, 0.3112147764677], +[0.1472503359499, 0.311177919734], +[0.1520567539434, 0.3111388857062], +[0.1568684496923, 0.3110975885005], +[0.1616855742232, 0.3110539406572], +[0.1665082774398, 0.3110078532292], +[0.1713367081076, 0.3109592358707], +[0.1761710138403, 0.3109079969262], +[0.1810113410862, 0.3108540435197], +[0.1858578351154, 0.3107972816436], +[0.1907106400085, 0.3107376162484], +[0.1955698986448, 0.3106749513306], +[0.2004357526912, 0.3106091900223], +[0.2053083425918, 0.310540234679], +[0.2101878075576, 0.3104679869674], +[0.2150742855564, 0.3103923479537], +[0.219967913303, 0.3103132181895], +[0.2248688262492, 0.3102304977995], +[0.229777158574, 0.3101440865663], +[0.2346930431738, 0.3100538840163], +[0.239616611652, 0.3099597895046], +[0.2445478050325, 0.3098612418054], +[-0.2417605703175, 0.3146890678217], +[-0.2368375415802, 0.314779738992], +[-0.2319223457291, 0.3148659973487], +[-0.227014874779, 0.314948497278], +[-0.2221149949741, 0.3150273409505], +[-0.2172225712446, 0.3151026303436], +[-0.2123374672164, 0.3151744671551], +[-0.2074595452203, 0.3152429527159], +[-0.2025886663013, 0.3153081879021], +[-0.1977246902279, 0.3153702730462], +[-0.1928674755012, 0.315429307848], +[-0.1880168793652, 0.3154853912848], +[-0.1831727578161, 0.3155386215212], +[-0.1783349656127, 0.3155890958186], +[-0.1735033562874, 0.3156369104438], +[-0.168677782157, 0.3156821605779], +[-0.1638580943348, 0.3157249402251], +[-0.1590441427432, 0.3157653421206], +[-0.1542357761268, 0.3158034576392], +[-0.1494328420665, 0.3158393767042], +[-0.144635186995, 0.3158731876953], +[-0.1398426562121, 0.3159049773587], +[-0.1350550939025, 0.3159348307158], +[-0.1302723431534, 0.3159628309736], +[-0.1254942459744, 0.3159890594359], +[-0.1207206433177, 0.316013595415], +[-0.1159513750999, 0.316036516144], +[-0.1111862802254, 0.3160578966916], +[-0.1064251966109, 0.3160778098774], +[-0.101667961211, 0.3160963261885], +[-0.09691441004562, 0.3161135136984], +[-0.0921643782289, 0.3161294379879], +[-0.08741769999899, 0.316144162067], +[-0.08267420874973, 0.3161577463008], +[-0.07793373706366, 0.3161702483357], +[-0.0731961167463, 0.3161817230302], +[-0.06846117886198, 0.316192222387], +[-0.06372875377096, 0.3162017954886], +[-0.05899867116785, 0.3162104884365], +[-0.05427076012135, 0.3162183442922], +[-0.04954484911523, 0.3162254030236], +[-0.04482076609045, 0.3162317014532], +[-0.04009833848841, 0.316237273211], +[-0.03537739329521, 0.3162421486908], +[-0.0306577570869, 0.3162463550112], +[-0.02593925607562, 0.3162499159795], +[-0.02122171615632, 0.3162528520604], +[-0.0165049629547, 0.3162551803502], +[-0.01178882187501, 0.3162569145526], +[-0.007073118148912, 0.3162580649616], +[-0.002357676884478, 0.3162586384474], +[0.002357676884477, 0.3162586384474], +[0.007073118148912, 0.3162580649616], +[0.01178882187501, 0.3162569145526], +[0.0165049629547, 0.3162551803502], +[0.02122171615632, 0.3162528520604], +[0.02593925607557, 0.3162499159793], +[0.0306577570869, 0.3162463550112], +[0.03537739329521, 0.3162421486908], +[0.04009833848841, 0.316237273211], +[0.04482076609045, 0.3162317014532], +[0.04954484911523, 0.3162254030236], +[0.05427076012135, 0.3162183442922], +[0.05899867116785, 0.3162104884365], +[0.06372875377096, 0.3162017954886], +[0.06846117886198, 0.316192222387], +[0.0731961167463, 0.3161817230302], +[0.07793373706366, 0.3161702483357], +[0.08267420874973, 0.3161577463008], +[0.08741769999899, 0.316144162067], +[0.0921643782289, 0.3161294379879], +[0.09691441004562, 0.3161135136984], +[0.101667961211, 0.3160963261885], +[0.1064251966109, 0.3160778098774], +[0.1111862802254, 0.3160578966916], +[0.1159513750999, 0.316036516144], +[0.1207206433177, 0.316013595415], +[0.1254942459744, 0.315989059436], +[0.1302723431534, 0.3159628309736], +[0.1350550939025, 0.3159348307158], +[0.1398426562121, 0.3159049773587], +[0.144635186995, 0.3158731876953], +[0.1494328420665, 0.3158393767042], +[0.1542357761268, 0.3158034576392], +[0.1590441427432, 0.3157653421206], +[0.1638580943348, 0.3157249402251], +[0.168677782157, 0.3156821605779], +[0.1735033562874, 0.3156369104438], +[0.1783349656127, 0.3155890958186], +[0.1831727578161, 0.3155386215212], +[0.1880168793652, 0.3154853912848], +[0.1928674755012, 0.315429307848], +[0.1977246902279, 0.3153702730462], +[0.2025886663013, 0.3153081879021], +[0.2074595452203, 0.3152429527159], +[0.2123374672164, 0.3151744671551], +[0.2172225712446, 0.3151026303436], +[0.2221149949741, 0.3150273409505], +[0.227014874779, 0.314948497278], +[0.2319223457291, 0.3148659973487], +[0.2368375415802, 0.314779738992], +[0.2417605709927, 0.3146890678402], +[-0.2389758689883, 0.3195127058593], +[-0.2340610923979, 0.3195954013834], +[-0.2291544059549, 0.3196738391718], +[-0.2242554842543, 0.319748654224], +[-0.219364191372, 0.319819950291], +[-0.2144803900485, 0.3198878309081], +[-0.2096039416971, 0.319952399307], +[-0.2047347064127, 0.3200137583257], +[-0.1998725429807, 0.3200720103187], +[-0.1950173088853, 0.3201272570658], +[-0.1901688603188, 0.3201795996813], +[-0.1853270521903, 0.3202291385211], +[-0.1804917381357, 0.3202759730906], +[-0.1756627705272, 0.3203202019514], +[-0.1708400004841, 0.3203619226277], +[-0.1660232778834, 0.3204012315129], +[-0.1612124513719, 0.3204382237748], +[-0.1564073683786, 0.3204729932625], +[-0.1516078751278, 0.320505632411], +[-0.1468138166538, 0.3205362321481], +[-0.1420250368157, 0.3205648818001], +[-0.1372413783146, 0.3205916689985], +[-0.1324626827093, 0.3206166795862], +[-0.1276887904376, 0.3206399975267], +[-0.122919540834, 0.3206617048109], +[-0.1181547721523, 0.3206818813675], +[-0.1133943215877, 0.3207006049729], +[-0.108638025301, 0.3207179511632], +[-0.1038857184445, 0.3207339931474], +[-0.09913723518831, 0.3207488017221], +[-0.09439240874962, 0.3207624451884], +[-0.08965107142222, 0.3207749892704], +[-0.08491305460826, 0.3207864970361], +[-0.08017818885129, 0.3207970288205], +[-0.07544630387088, 0.3208066421516], +[-0.07071722859867, 0.3208153916789], +[-0.06599079121595, 0.3208233291048], +[-0.06126681919265, 0.320830503119], +[-0.05654513932773, 0.3208369593366], +[-0.05182557779091, 0.3208427402396], +[-0.04710796016569, 0.3208478851214], +[-0.04239211149359, 0.3208524300356], +[-0.03767785631956, 0.3208564077491], +[-0.03296501873839, 0.3208598476982], +[-0.0282534224422, 0.3208627759498], +[-0.02354289076872, 0.3208652151666], +[-0.01883324675046, 0.3208671845768], +[-0.01412431316445, 0.3208686999479], +[-0.009415912582691, 0.3208697735659], +[-0.00470786742295, 0.3208704142183], +[4.207903308435e-13, 0.3208706271825], +[0.00470786742295, 0.3208704142183], +[0.009415912582691, 0.3208697735659], +[0.01412431316445, 0.3208686999479], +[0.01883324675046, 0.3208671845768], +[0.02354289076872, 0.3208652151666], +[0.0282534224422, 0.3208627759498], +[0.03296501873839, 0.3208598476982], +[0.03767785631956, 0.3208564077491], +[0.04239211149359, 0.3208524300356], +[0.04710796016569, 0.3208478851214], +[0.05182557779091, 0.3208427402396], +[0.05654513932773, 0.3208369593366], +[0.06126681919265, 0.3208305031189], +[0.06599079121595, 0.3208233291048], +[0.07071722859867, 0.3208153916789], +[0.07544630387088, 0.3208066421516], +[0.08017818885129, 0.3207970288205], +[0.08491305460826, 0.3207864970361], +[0.08965107142222, 0.3207749892704], +[0.09439240874962, 0.3207624451884], +[0.09913723518831, 0.3207488017221], +[0.1038857184445, 0.3207339931474], +[0.108638025301, 0.3207179511632], +[0.1133943215877, 0.3207006049729], +[0.1181547721523, 0.3206818813675], +[0.122919540834, 0.3206617048109], +[0.1276887904376, 0.3206399975267], +[0.1324626827093, 0.3206166795862], +[0.1372413783145, 0.3205916689984], +[0.1420250368158, 0.3205648818001], +[0.1468138166538, 0.3205362321481], +[0.1516078751278, 0.320505632411], +[0.1564073683786, 0.3204729932625], +[0.1612124513719, 0.3204382237748], +[0.1660232778834, 0.3204012315128], +[0.1708400004841, 0.3203619226277], +[0.1756627705272, 0.3203202019514], +[0.1804917381357, 0.3202759730906], +[0.1853270521903, 0.3202291385211], +[0.1901688603188, 0.3201795996813], +[0.1950173088853, 0.3201272570658], +[0.1998725429807, 0.3200720103187], +[0.2047347064127, 0.3200137583257], +[0.2096039416971, 0.319952399307], +[0.2144803900485, 0.3198878309081], +[0.219364191372, 0.319819950291], +[0.2242554842543, 0.319748654224], +[0.2291544059549, 0.3196738391718], +[0.2340610923979, 0.3195954013834], +[0.2389758694867, 0.3195127058733], +[-0.2361931513798, 0.3243319089093], +[-0.2312873609089, 0.3244066105768], +[-0.2263893208909, 0.3244772446407], +[-0.2214990842959, 0.3245443938793], +[-0.2166165130163, 0.3246081636802], +[-0.2117414675853, 0.3246686591922], +[-0.206873807186, 0.3247259852343], +[-0.2020133896586, 0.3247802462046], +[-0.1971600715087, 0.3248315459872], +[-0.1923137079154, 0.3248799878595], +[-0.1874741527394, 0.3249256743982], +[-0.182641258532, 0.3249687073845], +[-0.1778148765441, 0.3250091877096], +[-0.1729948567354, 0.3250472152781], +[-0.1681810477849, 0.3250828889126], +[-0.1633732971018, 0.325116306257], +[-0.1585714508368, 0.3251475636797], +[-0.1537753538947, 0.325176756177], +[-0.1489848499478, 0.3252039772758], +[-0.1441997814504, 0.3252293189371], +[-0.1394199896543, 0.3252528714595], +[-0.1346453146253, 0.3252747233825], +[-0.1298755952616, 0.3252949613915], +[-0.1251106693128, 0.325313670222], +[-0.1203503734004, 0.3253309325662], +[-0.1155945430403, 0.3253468289789], +[-0.1108430126661, 0.3253614377865], +[-0.1060956156542, 0.3253748349955], +[-0.1013521843507, 0.3253870942037], +[-0.09661255009937, 0.3253982865131], +[-0.09187654327169, 0.3254084804439], +[-0.08714399329825, 0.3254177418516], +[-0.0824147287019, 0.3254261338459], +[-0.07768857713245, 0.3254337167124], +[-0.07296536540305, 0.3254405478365], +[-0.06824491952807, 0.3254466816308], +[-0.06352706476261, 0.3254521694654], +[-0.05881162564346, 0.3254570596016], +[-0.05409842603158, 0.3254613971286], +[-0.04938728915598, 0.3254652239046], +[-0.04467803765891, 0.3254685785012], +[-0.03997049364231, 0.3254714961522], +[-0.03526447871556, 0.3254740087058], +[-0.03055981404416, 0.3254761445823], +[-0.02585632039953, 0.3254779287351], +[-0.0211538182097, 0.3254793826167], +[-0.01645212761072, 0.3254805241495], +[-0.01175106849885, 0.3254813677013], +[-0.007050460583235, 0.3254819240653], +[-0.002350123439047, 0.3254822004451], +[0.002350123439047, 0.3254822004451], +[0.007050460583235, 0.3254819240653], +[0.01175106849885, 0.3254813677013], +[0.01645212761072, 0.3254805241495], +[0.0211538182097, 0.3254793826167], +[0.02585632039953, 0.3254779287351], +[0.03055981404416, 0.3254761445823], +[0.03526447871556, 0.3254740087058], +[0.03997049364231, 0.3254714961522], +[0.04467803765891, 0.3254685785012], +[0.04938728915598, 0.3254652239046], +[0.05409842603158, 0.3254613971286], +[0.05881162564346, 0.3254570596016], +[0.06352706476261, 0.3254521694654], +[0.06824491952807, 0.3254466816308], +[0.07296536540305, 0.3254405478365], +[0.07768857713245, 0.3254337167124], +[0.0824147287019, 0.3254261338459], +[0.08714399329825, 0.3254177418516], +[0.09187654327169, 0.3254084804439], +[0.09661255009937, 0.3253982865131], +[0.1013521843507, 0.3253870942037], +[0.1060956156542, 0.3253748349955], +[0.1108430126661, 0.3253614377865], +[0.1155945430403, 0.3253468289789], +[0.1203503734004, 0.3253309325662], +[0.1251106693129, 0.3253136702222], +[0.1298755952616, 0.3252949613915], +[0.1346453146253, 0.3252747233825], +[0.1394199896543, 0.3252528714595], +[0.1441997814504, 0.3252293189371], +[0.1489848499478, 0.3252039772758], +[0.1537753538947, 0.325176756177], +[0.1585714508368, 0.3251475636797], +[0.1633732971018, 0.325116306257], +[0.1681810477849, 0.3250828889126], +[0.1729948567354, 0.3250472152781], +[0.1778148765441, 0.3250091877096], +[0.182641258532, 0.3249687073845], +[0.1874741527394, 0.3249256743982], +[0.1923137079154, 0.3248799878595], +[0.1971600715087, 0.3248315459872], +[0.2020133896586, 0.3247802462046], +[0.206873807186, 0.3247259852343], +[0.2117414675853, 0.3246686591922], +[0.2166165130163, 0.3246081636802], +[0.2214990842959, 0.3245443938793], +[0.2263893208909, 0.3244772446407], +[0.2312873609089, 0.3244066105768], +[0.2361931513865, 0.3243319089095], +[-0.2334137670516, 0.3291463476363], +[-0.2285164445006, 0.3292131995398], +[-0.2236271882061, 0.3292760479836], +[-0.2187457728769, 0.3293355517978], +[-0.2138720582046, 0.329391818064], +[-0.2090059024988, 0.3294449536004], +[-0.2041471626934, 0.3294950648688], +[-0.1992956943546, 0.3295422578807], +[-0.1944513516876, 0.3295866381024], +[-0.1896139875443, 0.3296283103595], +[-0.1847834534311, 0.3296673787404], +[-0.1799595995168, 0.3297039464993], +[-0.1751422746415, 0.3297381159581], +[-0.1703313263255, 0.3297699884084], +[-0.1655266007794, 0.3297996640123], +[-0.1607279429146, 0.3298272417036], +[-0.1559351963548, 0.3298528190878], +[-0.1511482034484, 0.3298764923425], +[-0.1463668052821, 0.3298983561181], +[-0.1415908416953, 0.3299185034375], +[-0.1368201512963, 0.3299370255971], +[-0.132054571479, 0.3299540120675], +[-0.1272939384417, 0.3299695503951], +[-0.1225380872066, 0.3299837261046], +[-0.1177868516419, 0.3299966226012], +[-0.113040064484, 0.3300083210759], +[-0.1082975573626, 0.3300189004099], +[-0.1035591608265, 0.3300284370819], +[-0.09882470437195, 0.3300370050766], +[-0.09409401647176, 0.330044675795], +[-0.08936692460695, 0.3300515179666], +[-0.08464325529962, 0.3300575975642], +[-0.07992283414782, 0.330062977721], +[-0.075205485862, 0.3300677186507], +[-0.07049103430325, 0.3300718775695], +[-0.06577930252316, 0.3300755086227], +[-0.06107011280541, 0.3300786628133], +[-0.05636328670884, 0.3300813879348], +[-0.05165864511214, 0.3300837285075], +[-0.04695600826002, 0.3300857257188], +[-0.04225519581067, 0.3300874173674], +[-0.03755602688473, 0.3300888378116], +[-0.03285832011526, 0.3300900179226], +[-0.02816189369902, 0.3300909850417], +[-0.02346656544869, 0.3300917629424], +[-0.01877215284598, 0.3300923717974], +[-0.0140784730956, 0.3300928281506], +[-0.009385343179787, 0.3300931448932], +[-0.004692579913521, 0.3300933312467], +[0, 0.3300933927489], +[0.004692579913521, 0.3300933312467], +[0.009385343179787, 0.3300931448932], +[0.0140784730956, 0.3300928281506], +[0.01877215284598, 0.3300923717974], +[0.02346656544869, 0.3300917629424], +[0.02816189369902, 0.3300909850417], +[0.03285832011526, 0.3300900179226], +[0.03755602688473, 0.3300888378116], +[0.04225519581067, 0.3300874173674], +[0.04695600826002, 0.3300857257188], +[0.05165864511214, 0.3300837285075], +[0.05636328670884, 0.3300813879348], +[0.06107011280541, 0.3300786628133], +[0.06577930252316, 0.3300755086227], +[0.07049103430325, 0.3300718775695], +[0.075205485862, 0.3300677186507], +[0.07992283414782, 0.330062977721], +[0.08464325529962, 0.3300575975642], +[0.08936692460695, 0.3300515179666], +[0.09409401647176, 0.330044675795], +[0.09882470437195, 0.3300370050766], +[0.1035591608265, 0.3300284370819], +[0.1082975573626, 0.3300189004099], +[0.113040064484, 0.3300083210759], +[0.1177868516419, 0.3299966226012], +[0.1225380872066, 0.3299837261046], +[0.1272939384417, 0.3299695503951], +[0.132054571479, 0.3299540120675], +[0.1368201512963, 0.3299370255971], +[0.1415908416953, 0.3299185034375], +[0.1463668052821, 0.3298983561181], +[0.1511482034484, 0.3298764923425], +[0.1559351963548, 0.3298528190878], +[0.1607279429146, 0.3298272417036], +[0.1655266007794, 0.3297996640123], +[0.1703313263255, 0.3297699884084], +[0.1751422746415, 0.3297381159581], +[0.1799595995168, 0.3297039464993], +[0.1847834534311, 0.3296673787404], +[0.1896139875443, 0.3296283103595], +[0.1944513516876, 0.3295866381024], +[0.1992956943546, 0.3295422578807], +[0.2041471626934, 0.3294950648688], +[0.2090059024988, 0.3294449536004], +[0.2138720582046, 0.329391818064], +[0.2187457728769, 0.3293355517978], +[0.2236271882061, 0.3292760479836], +[0.2285164445006, 0.3292131995398], +[0.233413767543, 0.3291463476851], +[-0.2306367946151, 0.3339566069626], +[-0.2257484411705, 0.3340150002659], +[-0.220868106228, 0.3340700824585], +[-0.2159956486765, 0.3341219625692], +[-0.211130925991, 0.3341707494318], +[-0.206273794239, 0.3342165515914], +[-0.201424108087, 0.3342594772085], +[-0.1965817208066, 0.3342996339629], +[-0.1917464842814, 0.3343371289566], +[-0.1869182490133, 0.3343720686149], +[-0.18209686413, 0.3344045585883], +[-0.1772821773927, 0.3344347036519], +[-0.1724740352036, 0.3344626076049], +[-0.1676722826155, 0.33448837317], +[-0.1628767633405, 0.3345121018909], +[-0.1580873197614, 0.3345338940306], +[-0.1533037929421, 0.3345538484688], +[-0.1485260226407, 0.3345720625992], +[-0.1437538473228, 0.3345886322268], +[-0.1389871041765, 0.3346036514651], +[-0.1342256291284, 0.3346172126339], +[-0.129469256861, 0.3346294061572], +[-0.1247178208323, 0.3346403204616], +[-0.1199711532959, 0.3346500418758], +[-0.1152290853233, 0.3346586545307], +[-0.1104914468281, 0.3346662402607], +[-0.1057580665911, 0.3346728785065], +[-0.1010287722886, 0.3346786462195], +[-0.09630339052032, 0.3346836177673], +[-0.09158174684162, 0.3346878648419], +[-0.08686366579573, 0.3346914563702], +[-0.08214897094868, 0.334694458426], +[-0.07743748492587, 0.3346969341453], +[-0.07272902945043, 0.3346989436449], +[-0.0680234253835, 0.3347005439426], +[-0.0633204927662, 0.3347017888826], +[-0.05862005086338, 0.3347027290626], +[-0.05392191820902, 0.3347034117663], +[-0.04922591265326, 0.3347038808981], +[-0.04453185141095, 0.3347041769238], +[-0.03983955111172, 0.334704336814], +[-0.0351488278513, 0.3347043939925], +[-0.03045949724421, 0.3347043782903], +[-0.02577137447754, 0.3347043159027], +[-0.02108427436578, 0.3347042293527], +[-0.01639801140658, 0.3347041374589], +[-0.01171239983724, 0.3347040553087], +[-0.007027253691924, 0.3347039942364], +[-0.002342386859322, 0.3347039618076], +[0.002342386859322, 0.3347039618076], +[0.007027253691924, 0.3347039942364], +[0.01171239983724, 0.3347040553087], +[0.01639801140657, 0.3347041374589], +[0.02108427436578, 0.3347042293527], +[0.02577137447754, 0.3347043159027], +[0.03045949724421, 0.3347043782903], +[0.0351488278513, 0.3347043939925], +[0.03983955111172, 0.334704336814], +[0.04453185141095, 0.3347041769238], +[0.04922591265326, 0.3347038808981], +[0.05392191820902, 0.3347034117663], +[0.05862005086338, 0.3347027290626], +[0.0633204927662, 0.3347017888826], +[0.0680234253835, 0.3347005439426], +[0.07272902945043, 0.3346989436449], +[0.07743748492587, 0.3346969341453], +[0.08214897094868, 0.334694458426], +[0.08686366579573, 0.3346914563702], +[0.09158174684162, 0.3346878648419], +[0.09630339052032, 0.3346836177673], +[0.1010287722886, 0.3346786462195], +[0.1057580665914, 0.3346728785068], +[0.1104914468281, 0.3346662402607], +[0.1152290853233, 0.3346586545307], +[0.1199711532959, 0.3346500418758], +[0.1247178208323, 0.3346403204616], +[0.129469256861, 0.3346294061572], +[0.1342256291284, 0.3346172126339], +[0.1389871041765, 0.3346036514651], +[0.1437538473228, 0.3345886322268], +[0.1485260226407, 0.3345720625992], +[0.1533037929421, 0.3345538484688], +[0.1580873197614, 0.3345338940306], +[0.1628767633405, 0.3345121018909], +[0.1676722826155, 0.33448837317], +[0.1724740352036, 0.3344626076049], +[0.1772821773927, 0.3344347036519], +[0.18209686413, 0.3344045585883], +[0.1869182490133, 0.3343720686149], +[0.1917464842814, 0.3343371289566], +[0.1965817208066, 0.3342996339629], +[0.201424108087, 0.3342594772085], +[0.206273794239, 0.3342165515914], +[0.211130925991, 0.3341707494318], +[0.2159956486765, 0.3341219625692], +[0.220868106228, 0.3340700824585], +[0.2257484411705, 0.3340150002659], +[0.2306367946151, 0.3339566069626], +[-0.2278627811818, 0.3387613391699], +[-0.2229834495549, 0.3388118437286], +[-0.2181121739716, 0.3388591803085], +[-0.2132488111124, 0.3389034597748], +[-0.2083932162185, 0.3389447927735], +[-0.2035452430975, 0.3389832896349], +[-0.1987047441286, 0.3390190602758], +[-0.1938715702681, 0.3390522141001], +[-0.1890455710556, 0.3390828598998], +[-0.1842265946194, 0.3391111057532], +[-0.1794144876836, 0.3391370589234], +[-0.1746090955744, 0.3391608257558], +[-0.1698102622286, 0.3391825115744], +[-0.1650178302011, 0.3392022205773], +[-0.160231640675, 0.3392200557326], +[-0.155451533471, 0.3392361186728], +[-0.1506773470594, 0.339250509589], +[-0.145908918572, 0.3392633271257], +[-0.1411460838161, 0.3392746682741], +[-0.1363886772895, 0.3392846282671], +[-0.1316365321971, 0.3392933004733], +[-0.1268894804689, 0.3393007762917], +[-0.1221473527795, 0.3393071450476], +[-0.1174099785698, 0.3393124938887], +[-0.11267718607, 0.339316907682], +[-0.1079488023243, 0.3393204689127], +[-0.1032246532181, 0.3393232575839], +[-0.09850456350647, 0.3393253511181], +[-0.09378835684463, 0.3393268242604], +[-0.08907585582095, 0.3393277489846], +[-0.08436688199118, 0.3393281944002], +[-0.0796612559152, 0.3393282266633], +[-0.07495879719544, 0.3393279088898], +[-0.07025932451737, 0.3393273010715], +[-0.06556265569191, 0.3393264599957], +[-0.06086860769965, 0.3393254391684], +[-0.05617699673698, 0.3393242887409], +[-0.05148763826393, 0.3393230554404], +[-0.04680034705371, 0.3393217825057], +[-0.04211493724388, 0.3393205096257], +[-0.03743122238896, 0.3393192728835], +[-0.03274901551458, 0.3393181047055], +[-0.02806812917276, 0.3393170338144], +[-0.02338837549852, 0.3393160851882], +[-0.01870956626738, 0.3393152800242], +[-0.01403151295396, 0.3393146357076], +[-0.009354026791124, 0.339314165787], +[-0.004676918829944, 0.3393138799539], +[2.547735296109e-16, 0.3393137840292], +[0.004676918829944, 0.3393138799539], +[0.009354026791124, 0.339314165787], +[0.01403151295396, 0.3393146357076], +[0.01870956626738, 0.3393152800242], +[0.02338837549852, 0.3393160851882], +[0.02806812917276, 0.3393170338144], +[0.03274901551458, 0.3393181047055], +[0.03743122238896, 0.3393192728835], +[0.04211493724388, 0.3393205096257], +[0.04680034705371, 0.3393217825057], +[0.05148763826393, 0.3393230554404], +[0.05617699673698, 0.3393242887409], +[0.06086860769965, 0.3393254391684], +[0.06556265569191, 0.3393264599957], +[0.07025932451737, 0.3393273010715], +[0.07495879719544, 0.3393279088898], +[0.0796612559152, 0.3393282266633], +[0.08436688199118, 0.3393281944002], +[0.08907585582095, 0.3393277489846], +[0.09378835684464, 0.3393268242605], +[0.09850456350647, 0.3393253511181], +[0.1032246532182, 0.3393232575839], +[0.1079488023243, 0.3393204689127], +[0.11267718607, 0.339316907682], +[0.1174099785698, 0.3393124938887], +[0.1221473527795, 0.3393071450476], +[0.1268894804689, 0.3393007762917], +[0.1316365321971, 0.3392933004733], +[0.1363886772895, 0.3392846282671], +[0.1411460838161, 0.3392746682741], +[0.145908918572, 0.3392633271257], +[0.1506773470594, 0.339250509589], +[0.155451533471, 0.3392361186728], +[0.160231640675, 0.3392200557326], +[0.1650178302011, 0.3392022205773], +[0.1698102622286, 0.3391825115744], +[0.1746090955744, 0.3391608257558], +[0.1794144876836, 0.3391370589234], +[0.1842265946194, 0.3391111057532], +[0.1890455710556, 0.3390828598998], +[0.1938715702681, 0.3390522141001], +[0.1987047441286, 0.3390190602758], +[0.2035452430975, 0.3389832896349], +[0.2083932162185, 0.3389447927735], +[0.2132488111124, 0.3389034597748], +[0.2181121739716, 0.3388591803085], +[0.2229834495549, 0.3388118437286], +[0.2278627811818, 0.3387613391699], +[-0.2250917392777, 0.3435609245377], +[-0.2202215689572, 0.3436035598348], +[-0.2153594911701, 0.3436431727148], +[-0.2105053603721, 0.3436798759414], +[-0.2056590295534, 0.3437137820339], +[-0.2008203502426, 0.3437450031676], +[-0.1959891725115, 0.3437736510741], +[-0.1911653449795, 0.3437998369388], +[-0.1863487148189, 0.3438236712992], +[-0.1815391277596, 0.3438452639404], +[-0.1767364280954, 0.3438647237906], +[-0.1719404586903, 0.3438821588155], +[-0.1671510609853, 0.3438976759115], +[-0.1623680750069, 0.3439113807984], +[-0.1575913393754, 0.3439233779116], +[-0.1528206913157, 0.3439337702937], +[-0.1480559666677, 0.3439426594853], +[-0.1432969998994, 0.3439501454162], +[-0.1385436241204, 0.3439563262961], +[-0.1337956710976, 0.3439612985055], +[-0.1290529712715, 0.3439651564868], +[-0.1243153537757, 0.3439679926359], +[-0.1195826464566, 0.3439698971944], +[-0.114854675896, 0.3439709581427], +[-0.1101312674349, 0.3439712610943], +[-0.1054122451998, 0.3439708891907], +[-0.1006974321306, 0.3439699229989], +[-0.09598665001096, 0.3439684404098], +[-0.09127971950019, 0.3439665165387], +[-0.08657646016776, 0.3439642236288], +[-0.08187669052963, 0.343961630956], +[-0.07718022808677, 0.3439588047376], +[-0.07248688936579, 0.3439558080431], +[-0.0677964899616, 0.3439527007088], +[-0.06310884458212, 0.3439495392558], +[-0.05842376709496, 0.3439463768115], +[-0.05374107057609, 0.3439432630355], +[-0.04906056736023, 0.3439402440494], +[-0.04438206909316, 0.343937362371], +[-0.03970538678556, 0.3439346568536], +[-0.03503033086854, 0.3439321626294], +[-0.0303567112505, 0.3439299110588], +[-0.02568433737545, 0.3439279296846], +[-0.02101301828237, 0.3439262421909], +[-0.01634256266577, 0.3439248683686], +[-0.01167277893702, 0.343923824086], +[-0.007003475286515, 0.343923121265], +[-0.002334459746382, 0.3439227678636], +[0.002334459746382, 0.3439227678636], +[0.007003475286515, 0.343923121265], +[0.01167277893702, 0.343923824086], +[0.01634256266577, 0.3439248683686], +[0.02101301828237, 0.3439262421909], +[0.02568433737545, 0.3439279296846], +[0.0303567112505, 0.3439299110588], +[0.03503033086854, 0.3439321626294], +[0.03970538678556, 0.3439346568536], +[0.04438206909316, 0.343937362371], +[0.04906056736023, 0.3439402440494], +[0.05374107057609, 0.3439432630355], +[0.05842376709496, 0.3439463768115], +[0.06310884458212, 0.3439495392558], +[0.0677964899616, 0.3439527007088], +[0.07248688936579, 0.3439558080431], +[0.07718022808677, 0.3439588047376], +[0.08187669052963, 0.343961630956], +[0.08657646016776, 0.3439642236288], +[0.09127971950019, 0.3439665165387], +[0.09598665001096, 0.3439684404098], +[0.1006974321306, 0.3439699229989], +[0.1054122451998, 0.3439708891907], +[0.1101312674349, 0.3439712610943], +[0.114854675896, 0.3439709581427], +[0.1195826464566, 0.3439698971944], +[0.1243153537757, 0.3439679926359], +[0.1290529712715, 0.3439651564868], +[0.1337956710976, 0.3439612985055], +[0.1385436241204, 0.3439563262961], +[0.1432969998994, 0.3439501454162], +[0.1480559666677, 0.3439426594853], +[0.1528206913157, 0.3439337702937], +[0.1575913393754, 0.3439233779116], +[0.1623680750069, 0.3439113807984], +[0.1671510609853, 0.3438976759115], +[0.1719404586903, 0.3438821588155], +[0.1767364280954, 0.3438647237906], +[0.1815391277596, 0.3438452639404], +[0.1863487148189, 0.3438236712992], +[0.1911653449795, 0.3437998369388], +[0.1959891725115, 0.3437736510741], +[0.2008203502426, 0.3437450031676], +[0.2056590295534, 0.3437137820339], +[0.2105053603721, 0.3436798759414], +[0.2153594911701, 0.3436431727148], +[0.2202215689572, 0.3436035598348], +[0.2250917392777, 0.3435609245377], +[-0.2223237684472, 0.3483551906501], +[-0.2174628993784, 0.3483899773767], +[-0.2126101583068, 0.3484218897495], +[-0.2077653974472, 0.3484510424946], +[-0.2029284675205, 0.3484775500666], +[-0.198099217757, 0.3485015265476], +[-0.1932774958999, 0.3485230855434], +[-0.1884631482094, 0.3485423400799], +[-0.1836560194658, 0.3485594024967], +[-0.178855952975, 0.348574384341], +[-0.1740627905729, 0.3485873962594], +[-0.1692763726314, 0.3485985478888], +[-0.164496538065, 0.3486079477471], +[-0.1597231243385, 0.3486157031222], +[-0.1549559674753, 0.3486219199611], +[-0.1501949020673, 0.3486267027573], +[-0.1454397612866, 0.3486301544393], +[-0.140690376897, 0.3486323762576], +[-0.135946579269, 0.348633467672], +[-0.1312081973951, 0.3486335262391], +[-0.1264750589073, 0.3486326475001], +[-0.1217469900961, 0.3486309248688], +[-0.1170238159321, 0.3486284495204], +[-0.1123053600889, 0.3486253102811], +[-0.1075914449682, 0.3486215935193], +[-0.1028818917272, 0.3486173830377], +[-0.0981765203081, 0.3486127599671], +[-0.09347514946974, 0.3486078026619], +[-0.08877759682141, 0.3486025865986], +[-0.08408367885907, 0.3485971842755], +[-0.0793932110037, 0.348591665116], +[-0.07470600764194, 0.3485860953744], +[-0.07002188216899, 0.3485805380449], +[-0.06534064703361, 0.3485750527744], +[-0.06066211378541, 0.3485696957787], +[-0.05598609312396, 0.3485645197626], +[-0.05131239495046, 0.3485595738451], +[-0.04664082842063, 0.3485549034879], +[-0.04197120200006, 0.3485505504293], +[-0.03730332352094, 0.3485465526233], +[-0.03263700024059, 0.3485429441828], +[-0.02797203890135, 0.3485397553298], +[-0.02330824579193, 0.3485370123493], +[-0.01864542680991, 0.3485347375504], +[-0.01398338752528, 0.3485329492323], +[-0.009321933244893, 0.3485316616566], +[-0.004660869077611, 0.3485308850259], +[-1.273867648054e-16, 0.3485306254678], +[0.004660869077611, 0.3485308850259], +[0.009321933244893, 0.3485316616566], +[0.01398338752528, 0.3485329492323], +[0.01864542680991, 0.3485347375504], +[0.02330824579193, 0.3485370123493], +[0.02797203890135, 0.3485397553298], +[0.03263700024059, 0.3485429441828], +[0.03730332352094, 0.3485465526233], +[0.04197120200006, 0.3485505504293], +[0.04664082842063, 0.3485549034879], +[0.05131239495046, 0.3485595738451], +[0.05598609312397, 0.3485645197626], +[0.0606621137854, 0.3485696957786], +[0.06534064703361, 0.3485750527744], +[0.07002188216899, 0.3485805380449], +[0.07470600764194, 0.3485860953744], +[0.0793932110037, 0.348591665116], +[0.08408367885907, 0.3485971842755], +[0.08877759682141, 0.3486025865986], +[0.09347514946974, 0.3486078026619], +[0.0981765203081, 0.3486127599671], +[0.1028818917272, 0.3486173830377], +[0.1075914449682, 0.3486215935193], +[0.1123053600889, 0.3486253102811], +[0.1170238159321, 0.3486284495204], +[0.1217469900961, 0.3486309248688], +[0.1264750589073, 0.3486326475001], +[0.1312081973951, 0.3486335262391], +[0.135946579269, 0.348633467672], +[0.140690376897, 0.3486323762576], +[0.1454397612866, 0.3486301544393], +[0.1501949020673, 0.3486267027573], +[0.1549559674753, 0.3486219199611], +[0.1597231243385, 0.3486157031222], +[0.164496538065, 0.3486079477471], +[0.1692763726314, 0.3485985478888], +[0.1740627905729, 0.3485873962594], +[0.178855952975, 0.348574384341], +[0.1836560194658, 0.3485594024967], +[0.1884631482094, 0.3485423400799], +[0.1932774958999, 0.3485230855434], +[0.198099217757, 0.3485015265476], +[0.2029284675205, 0.3484775500666], +[0.2077653974472, 0.3484510424946], +[0.2126101583068, 0.3484218897495], +[0.2174628993784, 0.3483899773767], +[0.2223237684472, 0.3483551906501], +[-0.2195589689091, 0.3531439639223], +[-0.2147075415473, 0.3531709239814], +[-0.2098642766479, 0.3531951603262], +[-0.2050290241678, 0.3532167897097], +[-0.20020163254, 0.3532359285863], +[-0.1953819486764, 0.3532526930072], +[-0.1905698179699, 0.3532671985146], +[-0.1857650842972, 0.3532795600341], +[-0.180967590022, 0.3532898917661], +[-0.1761771759984, 0.3532983070762], +[-0.1713936815755, 0.3533049183835], +[-0.1666169446023, 0.3533098370489], +[-0.1618468014338, 0.3533131732616], +[-0.1570830869383, 0.353315035925], +[-0.1523256345057, 0.353315532542], +[-0.1475742760569, 0.3533147690993], +[-0.1428288420551, 0.3533128499518], +[-0.1380891615183, 0.353309877706], +[-0.1333550620338, 0.3533059531041], +[-0.1286263697741, 0.3533011749072], +[-0.1239029095151, 0.3532956397798], +[-0.1191845046556, 0.3532894421741], +[-0.11447097724, 0.3532826742153], +[-0.1097621479817, 0.3532754255877], +[-0.1050578362901, 0.3532677834225], +[-0.1003578602988, 0.3532598321862], +[-0.09566203689705, 0.3532516535717], +[-0.09097018176253, 0.353243326391], +[-0.08628210939752, 0.3532349264696], +[-0.08159763316684, 0.3532265265447], +[-0.07691656533843, 0.3532181961652], +[-0.07223871712627, 0.3532100015957], +[-0.06756389873569, 0.3532020057229], +[-0.06289191941097, 0.3531942679668], +[-0.05822258748526, 0.3531868441951], +[-0.05355571043267, 0.3531797866424], +[-0.04889109492247, 0.3531731438337], +[-0.04422854687541, 0.3531669605123], +[-0.03956787152182, 0.353161277574], +[-0.03490887346157, 0.3531561320045], +[-0.03025135672588, 0.3531515568248], +[-0.0255951248403, 0.3531475810399], +[-0.02093998088934, 0.353144229595], +[-0.01628572758223, 0.353141523337], +[-0.01163216731971, 0.3531394789825], +[-0.006979102261636, 0.3531381090915], +[-0.002326334395387, 0.3531374220483], +[0.002326334395387, 0.3531374220483], +[0.006979102261637, 0.3531381090915], +[0.0116321673197, 0.3531394789825], +[0.01628572758223, 0.353141523337], +[0.02093998088934, 0.353144229595], +[0.0255951248403, 0.3531475810399], +[0.03025135672588, 0.3531515568248], +[0.03490887346157, 0.3531561320045], +[0.03956787152181, 0.353161277574], +[0.0442285468754, 0.3531669605123], +[0.04889109492247, 0.3531731438337], +[0.05355571043267, 0.3531797866424], +[0.05822258748526, 0.3531868441951], +[0.06289191941097, 0.3531942679668], +[0.06756389873569, 0.3532020057229], +[0.07223871712627, 0.3532100015957], +[0.07691656533843, 0.3532181961652], +[0.08159763316684, 0.3532265265447], +[0.08628210939752, 0.3532349264696], +[0.09097018176253, 0.353243326391], +[0.09566203689705, 0.3532516535717], +[0.1003578602988, 0.3532598321862], +[0.1050578362901, 0.3532677834225], +[0.1097621479817, 0.3532754255877], +[0.11447097724, 0.3532826742153], +[0.1191845046556, 0.3532894421741], +[0.1239029095151, 0.3532956397798], +[0.1286263697741, 0.3533011749072], +[0.1333550620338, 0.3533059531041], +[0.1380891615183, 0.353309877706], +[0.1428288420551, 0.3533128499518], +[0.1475742760569, 0.3533147690993], +[0.1523256345057, 0.353315532542], +[0.1570830869383, 0.353315035925], +[0.1618468014338, 0.3533131732616], +[0.1666169446023, 0.3533098370489], +[0.1713936815755, 0.3533049183835], +[0.1761771759984, 0.3532983070762], +[0.180967590022, 0.3532898917661], +[0.1857650842972, 0.3532795600341], +[0.1905698179699, 0.3532671985146], +[0.1953819486764, 0.3532526930072], +[0.20020163254, 0.3532359285863], +[0.2050290241678, 0.3532167897097], +[0.2098642766479, 0.3531951603262], +[0.2147075415473, 0.3531709239814], +[0.2195589689094, 0.3531439639223], +[-0.2167974415883, 0.3579270695489], +[-0.2119555969537, 0.3579462260599], +[-0.2071219482765, 0.3579628121484], +[-0.2022963432386, 0.3579769466614], +[-0.1974786279658, 0.3579887481187], +[-0.1926686470301, 0.3579983346051], +[-0.1878662434514, 0.3580058236618], +[-0.1830712586984, 0.3580113321759], +[-0.178283532691, 0.3580149762683], +[-0.1735029038032, 0.3580168711807], +[-0.1687292088666, 0.3580171311605], +[-0.1639622831746, 0.358015869346], +[-0.1592019604882, 0.3580131976485], +[-0.1544480730427, 0.3580092266354], +[-0.1497004515555, 0.358004065411], +[-0.1449589252357, 0.3579978214977], +[-0.1402233217954, 0.3579906007158], +[-0.1354934674619, 0.3579825070639], +[-0.1307691869928, 0.3579736425983], +[-0.1260503036926, 0.3579641073131], +[-0.1213366394307, 0.3579539990203], +[-0.1166280146627, 0.3579434132306], +[-0.1119242484532, 0.3579324430349], +[-0.107225158501, 0.3579211789867], +[-0.1025305611668, 0.3579097089862], +[-0.09784027150346, 0.3578981181656], +[-0.09315410328855, 0.3578864887765], +[-0.08847186905949, 0.3578749000792], +[-0.08379338015134, 0.357863428235], +[-0.07911844673707, 0.3578521462005], +[-0.07444687787042, 0.3578411236258], +[-0.06977848153132, 0.3578304267553], +[-0.06511306467382, 0.3578201183329], +[-0.06045043327645, 0.3578102575104], +[-0.05579039239501, 0.3578008997609], +[-0.05113274621769, 0.3577920967964], +[-0.04647729812242, 0.3577838964903], +[-0.04182385073625, 0.3577763428049], +[-0.03717220599691, 0.3577694757245], +[-0.03252216521603, 0.3577633311938], +[-0.02787352914422, 0.3577579410625], +[-0.02322609803767, 0.3577533330358], +[-0.0185796717261, 0.3577495306308], +[-0.01393404968199, 0.3577465531397], +[-0.009289031090744, 0.3577444155992], +[-0.004644414921739, 0.357743128767], +[-1.273867648054e-16, 0.3577426991047], +[0.004644414921739, 0.357743128767], +[0.009289031090744, 0.3577444155992], +[0.01393404968199, 0.3577465531397], +[0.0185796717261, 0.3577495306308], +[0.02322609803767, 0.3577533330358], +[0.02787352914422, 0.3577579410625], +[0.03252216521603, 0.3577633311938], +[0.03717220599691, 0.3577694757245], +[0.04182385073625, 0.3577763428049], +[0.04647729812242, 0.3577838964903], +[0.05113274621769, 0.3577920967964], +[0.055790392395, 0.3578008997609], +[0.06045043327645, 0.3578102575104], +[0.06511306467382, 0.3578201183329], +[0.06977848153132, 0.3578304267553], +[0.07444687787042, 0.3578411236258], +[0.07911844673707, 0.3578521462005], +[0.08379338015134, 0.357863428235], +[0.08847186905949, 0.3578749000792], +[0.09315410328855, 0.3578864887765], +[0.09784027150346, 0.3578981181656], +[0.1025305611668, 0.3579097089862], +[0.107225158501, 0.3579211789867], +[0.1119242484532, 0.3579324430349], +[0.1166280146627, 0.3579434132306], +[0.1213366394307, 0.3579539990203], +[0.1260503036926, 0.3579641073131], +[0.1307691869928, 0.3579736425983], +[0.1354934674619, 0.3579825070639], +[0.1402233217954, 0.3579906007158], +[0.1449589252357, 0.3579978214977], +[0.1497004515555, 0.358004065411], +[0.1544480730427, 0.3580092266354], +[0.1592019604882, 0.3580131976485], +[0.1639622831746, 0.358015869346], +[0.1687292088666, 0.3580171311605], +[0.1735029038032, 0.3580168711807], +[0.178283532691, 0.3580149762683], +[0.1830712586984, 0.3580113321759], +[0.1878662434514, 0.3580058236618], +[0.1926686470301, 0.3579983346051], +[0.1974786279658, 0.3579887481187], +[0.2022963432386, 0.3579769466614], +[0.2071219482765, 0.3579628121484], +[0.2119555969535, 0.3579462260599], +[0.2167974415883, 0.3579270695489], +[-0.2140391044276, 0.3627038251849], +[-0.209207167879, 0.362715708753], +[-0.2043832761276, 0.3627246716573], +[-0.1995674582766, 0.3627313411722], +[-0.1947595581248, 0.36273583795], +[-0.1899594178827, 0.3627382821756], +[-0.1851668781729, 0.3627387934538], +[-0.1803817780301, 0.3627374906963], +[-0.1756039549027, 0.3627344920057], +[-0.1708332446542, 0.3627299145589], +[-0.1660694815663, 0.3627238744891], +[-0.1613124983427, 0.3627164867662], +[-0.1565621261135, 0.3627078650762], +[-0.1518181944422, 0.3626981216994], +[-0.147080531333, 0.3626873673882], +[-0.1423489632402, 0.3626757112434], +[-0.1376233150793, 0.3626632605907], +[-0.13290341024, 0.3626501208566], +[-0.128189070601, 0.3626363954439], +[-0.1234801165473, 0.3626221856078], +[-0.1187763669893, 0.3626075903317], +[-0.1140776393843, 0.3625927062043], +[-0.1093837497609, 0.362577627297], +[-0.1046945127451, 0.3625624450425], +[-0.1000097415899, 0.362547248115], +[-0.09532924820657, 0.3625321223122], +[-0.09065284319943, 0.362517150439], +[-0.08598033590291, 0.3625024121934], +[-0.08131153442145, 0.3624879840558], +[-0.07664624567216, 0.3624739391804], +[-0.0719842754302, 0.3624603472906], +[-0.06732542837687, 0.3624472745774], +[-0.06266950815036, 0.3624347836023], +[-0.05801631739913, 0.362422933204], +[-0.05336565783778, 0.36241177841], +[-0.0487173303054, 0.3624013703531], +[-0.04407113482623, 0.3623917561927], +[-0.03942687067254, 0.3623829790418], +[-0.03478433642956, 0.3623750779], +[-0.0301433300624, 0.3623680875918], +[-0.02550364898466, 0.3623620387119], +[-0.02086509012868, 0.3623569575759], +[-0.01622745001709, 0.3623528661789], +[-0.01159052483573, 0.3623497821597], +[-0.00695411050736, 0.3623477187723], +[-0.002318002766327, 0.3623466848648], +[0.002318002766327, 0.3623466848648], +[0.00695411050736, 0.3623477187723], +[0.01159052483573, 0.3623497821597], +[0.01622745001709, 0.3623528661789], +[0.02086509012868, 0.3623569575759], +[0.02550364898467, 0.3623620387119], +[0.0301433300624, 0.3623680875918], +[0.03478433642956, 0.3623750779], +[0.03942687067254, 0.3623829790418], +[0.04407113482623, 0.3623917561927], +[0.0487173303054, 0.3624013703531], +[0.05336565783778, 0.36241177841], +[0.05801631739913, 0.362422933204], +[0.06266950815036, 0.3624347836023], +[0.06732542837687, 0.3624472745774], +[0.0719842754302, 0.3624603472906], +[0.07664624567216, 0.3624739391804], +[0.08131153442145, 0.3624879840558], +[0.08598033590291, 0.3625024121934], +[0.09065284319943, 0.362517150439], +[0.09532924820657, 0.3625321223122], +[0.1000097415899, 0.362547248115], +[0.1046945127451, 0.3625624450425], +[0.1093837497609, 0.362577627297], +[0.1140776393843, 0.3625927062043], +[0.1187763669893, 0.3626075903317], +[0.1234801165473, 0.3626221856078], +[0.128189070601, 0.3626363954439], +[0.13290341024, 0.3626501208566], +[0.1376233150793, 0.3626632605907], +[0.1423489632402, 0.3626757112434], +[0.147080531333, 0.3626873673882], +[0.1518181944422, 0.3626981216994], +[0.1565621261135, 0.3627078650762], +[0.1613124983427, 0.3627164867662], +[0.1660694815663, 0.3627238744891], +[0.1708332446542, 0.3627299145589], +[0.1756039549027, 0.3627344920057], +[0.1803817780301, 0.3627374906963], +[0.1851668781729, 0.3627387934538], +[0.1899594178827, 0.3627382821756], +[0.1947595581248, 0.36273583795], +[0.1995674582766, 0.3627313411722], +[0.2043832761276, 0.3627246716573], +[0.209207167879, 0.362715708753], +[0.2140391044329, 0.3627038251859], +[-0.2112846984452, 0.3674749889182], +[-0.2064623574349, 0.3674791958766], +[-0.2016483640254, 0.3674805639768], +[-0.19684247385, 0.3674797997577], +[-0.1920445283587, 0.3674770260735], +[-0.1872543673778, 0.367472365277], +[-0.1824718291072, 0.3674659391034], +[-0.1776967501205, 0.3674578685534], +[-0.1729289653647, 0.3674482737743], +[-0.1681683081612, 0.3674372739393], +[-0.1634146102078, 0.3674249871257], +[-0.1586677015817, 0.3674115301912], +[-0.1539274107438, 0.3673970186495], +[-0.1491935645447, 0.3673815665445], +[-0.1444659882318, 0.3673652863236], +[-0.1397445054592, 0.3673482887099], +[-0.135028938298, 0.3673306825749], +[-0.1303191072501, 0.3673125748091], +[-0.1256148312634, 0.3672940701943], +[-0.1209159277492, 0.3672752712745], +[-0.1162222126025, 0.3672562782283], +[-0.1115335002247, 0.367237188741], +[-0.1068496035485, 0.3672180978784], +[-0.1021703340659, 0.3671990979612], +[-0.09749550185923, 0.3671802784414], +[-0.09282491563428, 0.3671617257799], +[-0.08815838275694, 0.3671435233273], +[-0.08349570929247, 0.3671257512064], +[-0.07883670004778, 0.3671084861973], +[-0.07418115861668, 0.367091801627], +[-0.06952888742792, 0.3670757672608], +[-0.06487968779624, 0.3670604491994], +[-0.06023335997614, 0.3670459097785], +[-0.0555897032185, 0.3670322074744], +[-0.05094851582976, 0.3670193968137], +[-0.04630959523374, 0.3670075282881], +[-0.04167273803592, 0.3669966482757], +[-0.0370377400899, 0.3669867989671], +[-0.03240439656616, 0.3669780182977], +[-0.02777250202273, 0.3669703398872], +[-0.0231418504776, 0.3669637929848], +[-0.01851223548287, 0.3669584024218], +[-0.01388345020018, 0.3669541885705], +[-0.00925528747735, 0.3669511673111], +[-0.004627539926034, 0.3669493500055], +[0, 0.3669487434782], +[0.004627539926034, 0.3669493500055], +[0.00925528747735, 0.3669511673111], +[0.01388345020018, 0.3669541885705], +[0.01851223548287, 0.3669584024218], +[0.0231418504776, 0.3669637929848], +[0.02777250202273, 0.3669703398872], +[0.03240439656616, 0.3669780182977], +[0.0370377400899, 0.3669867989671], +[0.04167273803592, 0.3669966482757], +[0.04630959523374, 0.3670075282881], +[0.05094851582976, 0.3670193968137], +[0.0555897032185, 0.3670322074744], +[0.06023335997614, 0.3670459097785], +[0.06487968779624, 0.3670604491994], +[0.06952888742792, 0.3670757672608], +[0.07418115861668, 0.367091801627], +[0.07883670004778, 0.3671084861973], +[0.08349570929247, 0.3671257512064], +[0.08815838275694, 0.3671435233273], +[0.09282491563428, 0.3671617257799], +[0.09749550185923, 0.3671802784414], +[0.1021703340659, 0.3671990979612], +[0.1068496035485, 0.3672180978784], +[0.1115335002247, 0.367237188741], +[0.1162222126025, 0.3672562782283], +[0.1209159277492, 0.3672752712745], +[0.1256148312634, 0.3672940701943], +[0.1303191072501, 0.3673125748091], +[0.135028938298, 0.3673306825749], +[0.1397445054592, 0.3673482887099], +[0.1444659882318, 0.3673652863236], +[0.1491935645447, 0.3673815665445], +[0.1539274107438, 0.3673970186495], +[0.1586677015817, 0.3674115301912], +[0.1634146102078, 0.3674249871257], +[0.1681683081612, 0.3674372739393], +[0.1729289653647, 0.3674482737743], +[0.1776967501205, 0.3674578685534], +[0.1824718291072, 0.3674659391034], +[0.1872543673778, 0.367472365277], +[0.1920445283587, 0.3674770260735], +[0.19684247385, 0.3674797997577], +[0.201648364026, 0.3674805639769], +[0.2064623574349, 0.3674791958766], +[0.2112846984436, 0.3674749889178], +[-0.2085333829353, 0.3722400762078], +[-0.2037212695951, 0.3722365098637], +[-0.1989173167215, 0.3722303128569], +[-0.1941214955186, 0.3722221475714], +[-0.189333645067, 0.372212139135], +[-0.1845536027837, 0.3722004121382], +[-0.1797812044198, 0.3721870905149], +[-0.1750162840589, 0.3721722974219], +[-0.1702586741153, 0.3721561551155], +[-0.1655082053349, 0.3721387848278], +[-0.1607647067953, 0.3721203066402], +[-0.1560280059088, 0.3721008393556], +[-0.1512979284259, 0.3720805003701], +[-0.1465742984408, 0.3720594055427], +[-0.1418569383986, 0.3720376690637], +[-0.1371456691045, 0.3720154033234], +[-0.1324403097346, 0.3719927187794], +[-0.1277406778501, 0.3719697238232], +[-0.1230465894125, 0.3719465246476], +[-0.1183578588022, 0.3719232251136], +[-0.1136742988395, 0.3718999266177], +[-0.1089957208081, 0.3718767279601], +[-0.1043219344818, 0.3718537252137], +[-0.09965274815385, 0.3718310115948], +[-0.09498796866935, 0.3718086773346], +[-0.09032740146089, 0.3717868095538], +[-0.08567085058704, 0.371765492139], +[-0.08101811877408, 0.3717448056213], +[-0.07636900746083, 0.371724827059], +[-0.07172331684666, 0.371705629923], +[-0.06708084594254, 0.3716872839864], +[-0.06244139262517, 0.371669855218], +[-0.05780475369409, 0.3716534056806], +[-0.05317072493174, 0.3716379934339], +[-0.04853910116623, 0.3716236724431], +[-0.04390967633694, 0.3716104924925], +[-0.03928224356251, 0.3715984991057], +[-0.03465659521136, 0.3715877334716], +[-0.03003252297435, 0.3715782323767], +[-0.0254098179395, 0.3715700281448], +[-0.02078827066854, 0.3715631485833], +[-0.01616767127506, 0.3715576169368], +[-0.01154780950407, 0.371553451848], +[-0.006928474812705, 0.3715506673267], +[-0.002309456451806, 0.3715492727258], +[0.002309456451807, 0.3715492727258], +[0.006928474812705, 0.3715506673267], +[0.01154780950407, 0.371553451848], +[0.01616767127506, 0.3715576169368], +[0.02078827066854, 0.3715631485833], +[0.0254098179395, 0.3715700281448], +[0.03003252297435, 0.3715782323767], +[0.03465659521136, 0.3715877334716], +[0.03928224356251, 0.3715984991057], +[0.04390967633694, 0.3716104924925], +[0.04853910116623, 0.3716236724431], +[0.05317072493174, 0.3716379934339], +[0.05780475369409, 0.3716534056806], +[0.06244139262517, 0.371669855218], +[0.06708084594254, 0.3716872839864], +[0.07172331684666, 0.371705629923], +[0.07636900746083, 0.371724827059], +[0.08101811877408, 0.3717448056213], +[0.08567085058704, 0.371765492139], +[0.09032740146089, 0.3717868095538], +[0.09498796866935, 0.3718086773346], +[0.09965274815385, 0.3718310115948], +[0.1043219344818, 0.3718537252137], +[0.1089957208081, 0.3718767279601], +[0.1136742988395, 0.3718999266177], +[0.1183578588022, 0.3719232251136], +[0.1230465894125, 0.3719465246476], +[0.1277406778501, 0.3719697238232], +[0.1324403097346, 0.3719927187794], +[0.1371456691045, 0.3720154033234], +[0.1418569383986, 0.3720376690637], +[0.1465742984408, 0.3720594055427], +[0.1512979284259, 0.3720805003701], +[0.1560280059088, 0.3721008393556], +[0.1607647067953, 0.3721203066402], +[0.1655082053349, 0.3721387848278], +[0.1702586741153, 0.3721561551155], +[0.1750162840589, 0.3721722974219], +[0.1797812044198, 0.3721870905149], +[0.1845536027837, 0.3722004121382], +[0.189333645067, 0.372212139135], +[0.1941214955186, 0.3722221475714], +[0.1989173167215, 0.3722303128569], +[0.2037212695951, 0.3722365098637], +[0.2085333846551, 0.3722400766771], +[-0.2057858504634, 0.3769988119082], +[-0.2009840092347, 0.3769874717054], +[-0.1961902399334, 0.3769737406146], +[-0.1914046298766, 0.3769582083465], +[-0.1866270157515, 0.3769410023757], +[-0.1818572325409, 0.3769222496028], +[-0.1770951135191, 0.3769020762307], +[-0.1723404902489, 0.3768806076407], +[-0.1675931925795, 0.3768579682652], +[-0.162853048645, 0.376834281459], +[-0.1581198848651, 0.3768096693693], +[-0.1533935259462, 0.3767842528035], +[-0.1486737948851, 0.3767581510958], +[-0.1439605129734, 0.3767314819728], +[-0.1392534998049, 0.3767043614171], +[-0.1345525732849, 0.3766769035313], +[-0.1298575496407, 0.3766492204004], +[-0.1251682434365, 0.3766214219537], +[-0.1204844675888, 0.3765936158278], +[-0.1158060333863, 0.3765659072278], +[-0.1111327505114, 0.3765383987909], +[-0.1064644270652, 0.3765111904493], +[-0.1018008695954, 0.3764843792948], +[-0.09714188312781, 0.3764580594451], +[-0.09248727120024, 0.3764323219109], +[-0.08783683590038, 0.3764072544666], +[-0.08319037790668, 0.3763829415222], +[-0.0785476965327, 0.3763594639987], +[-0.0739085897747, 0.376336899207], +[-0.06927285436269, 0.3763153207305], +[-0.06464028581464, 0.376294798311], +[-0.06001067849408, 0.3762753977404], +[-0.0553838256707, 0.3762571807561], +[-0.05075951958417, 0.3762402049426], +[-0.04613755151079, 0.3762245236379], +[-0.04151771183306, 0.3762101858467], +[-0.03689979011182, 0.3761972361595], +[-0.03228357516091, 0.3761857146781], +[-0.02766885512411, 0.3761756569487], +[-0.02305541755419, 0.3761670939017], +[-0.01844304949376, 0.3761600517993], +[-0.01383153755778, 0.3761545521905], +[-0.009220668017433, 0.3761506118742], +[-0.00461022688506, 0.3761482428707], +[3.184669120136e-16, 0.3761474524001], +[0.00461022688506, 0.3761482428707], +[0.009220668017434, 0.3761506118742], +[0.01383153755778, 0.3761545521905], +[0.01844304949376, 0.3761600517993], +[0.02305541755419, 0.3761670939017], +[0.02766885512411, 0.3761756569487], +[0.03228357516091, 0.3761857146781], +[0.03689979011182, 0.3761972361595], +[0.04151771183306, 0.3762101858467], +[0.04613755151079, 0.3762245236379], +[0.05075951958417, 0.3762402049426], +[0.0553838256707, 0.3762571807561], +[0.06001067849408, 0.3762753977404], +[0.06464028581464, 0.376294798311], +[0.06927285436269, 0.3763153207305], +[0.0739085897747, 0.376336899207], +[0.0785476965327, 0.3763594639987], +[0.08319037790668, 0.3763829415222], +[0.08783683590038, 0.3764072544666], +[0.09248727120024, 0.3764323219109], +[0.09714188312781, 0.3764580594451], +[0.1018008695954, 0.3764843792948], +[0.1064644270652, 0.3765111904493], +[0.1111327505114, 0.3765383987909], +[0.1158060333863, 0.3765659072278], +[0.1204844675888, 0.3765936158278], +[0.1251682434365, 0.3766214219537], +[0.1298575496407, 0.3766492204004], +[0.1345525732849, 0.3766769035313], +[0.1392534998049, 0.3767043614171], +[0.1439605129734, 0.3767314819728], +[0.1486737948851, 0.3767581510958], +[0.1533935259462, 0.3767842528035], +[0.1581198848651, 0.3768096693693], +[0.162853048645, 0.376834281459], +[0.1675931925795, 0.3768579682652], +[0.1723404902489, 0.3768806076407], +[0.1770951135191, 0.3769020762307], +[0.1818572325409, 0.3769222496028], +[0.1866270157515, 0.3769410023757], +[0.1914046298766, 0.3769582083465], +[0.1961902399334, 0.3769737406146], +[0.2009840092347, 0.3769874717054], +[0.2057858504721, 0.3769988119104], +[-0.2030423784777, 0.3817508029355], +[-0.198250682168, 0.3817319008887], +[-0.1934672403873, 0.3817106680732], +[-0.188691984596, 0.3816878043357], +[-0.1839247490637, 0.3816634395736], +[-0.1791653663118, 0.3816377030715], +[-0.1744136671085, 0.3816107233745], +[-0.1696694804638, 0.3815826281589], +[-0.1649326336264, 0.3815535441014], +[-0.1602029520814, 0.3815235967461], +[-0.1554802595497, 0.3814929103695], +[-0.1507643779887, 0.3814616078437], +[-0.1460551275951, 0.3814298104986], +[-0.1413523268091, 0.3813976379821], +[-0.1366557923218, 0.3813652081193], +[-0.1319653390837, 0.3813326367712], +[-0.1272807803164, 0.3813000376919], +[-0.1226019275272, 0.3812675223861], +[-0.1179285905258, 0.381235199966], +[-0.1132605774442, 0.3812031770086], +[-0.1085976947601, 0.3811715574135], +[-0.1039397473231, 0.3811404422611], +[-0.09928653838401, 0.3811099296727], +[-0.0946378696282, 0.3810801146716], +[-0.08999354121185, 0.3810510890465], +[-0.08535335180201, 0.3810229412165], +[-0.08071709862012, 0.3809957561003], +[-0.0760845774891, 0.380969614987], +[-0.07145558288414, 0.3809445954115], +[-0.06682990798684, 0.3809207710335], +[-0.06220734474308, 0.3808982115211], +[-0.05758768392411, 0.3808769824389], +[-0.05297071519116, 0.3808571451423], +[-0.04835622716317, 0.3808387566759], +[-0.04374400748769, 0.3808218696798], +[-0.03913384291463, 0.3808065323006], +[-0.03452551937293, 0.3807927881104], +[-0.02991882204959, 0.3807806760325], +[-0.02531353547125, 0.3807702302744], +[-0.02070944358774, 0.3807614802685], +[-0.01610632985763, 0.3807544506213], +[-0.01150397733523, 0.38074916107], +[-0.006902168759111, 0.3807456264481], +[-0.002300686641491, 0.3807438566591], +[0.002300686641491, 0.3807438566591], +[0.006902168759111, 0.3807456264481], +[0.01150397733523, 0.38074916107], +[0.01610632985763, 0.3807544506213], +[0.02070944358774, 0.3807614802685], +[0.02531353547125, 0.3807702302744], +[0.02991882204959, 0.3807806760325], +[0.03452551937293, 0.3807927881104], +[0.03913384291463, 0.3808065323006], +[0.04374400748769, 0.3808218696798], +[0.04835622716317, 0.3808387566759], +[0.05297071519116, 0.3808571451423], +[0.05758768392411, 0.3808769824389], +[0.06220734474308, 0.3808982115211], +[0.06682990798684, 0.3809207710335], +[0.07145558288413, 0.3809445954115], +[0.0760845774891, 0.380969614987], +[0.08071709862012, 0.3809957561003], +[0.08535335180201, 0.3810229412165], +[0.08999354121185, 0.3810510890465], +[0.0946378696282, 0.3810801146716], +[0.09928653838401, 0.3811099296727], +[0.1039397473231, 0.3811404422611], +[0.1085976947601, 0.3811715574135], +[0.1132605774442, 0.3812031770086], +[0.1179285905258, 0.381235199966], +[0.1226019275272, 0.3812675223861], +[0.1272807803164, 0.3813000376919], +[0.1319653390837, 0.3813326367712], +[0.1366557923218, 0.3813652081193], +[0.1413523268091, 0.3813976379821], +[0.1460551275951, 0.3814298104986], +[0.1507643779887, 0.3814616078437], +[0.1554802595497, 0.3814929103695], +[0.1602029520814, 0.3815235967461], +[0.1649326336264, 0.3815535441014], +[0.1696694804638, 0.3815826281589], +[0.1744136671085, 0.3816107233745], +[0.1791653663118, 0.3816377030715], +[0.1839247490637, 0.3816634395736], +[0.188691984596, 0.3816878043357], +[0.1934672403873, 0.3817106680732], +[0.198250682168, 0.3817319008887], +[0.2030423784816, 0.3817508029365], +[-0.200302810839, 0.3864961570354], +[-0.1955213951893, 0.3864696153322], +[-0.1907484258606, 0.3864409144987], +[-0.185983668473, 0.386410756249], +[-0.181226954853, 0.3863792729818], +[-0.1764781150325, 0.3863465964427], +[-0.1717369772418, 0.3863128575936], +[-0.1670033679042, 0.3862781864789], +[-0.1622771116309, 0.3862427120906], +[-0.157558031218, 0.3862065622299], +[-0.1528459476445, 0.3861698633679], +[-0.1481406800729, 0.3861327405039], +[-0.1434420458507, 0.386095317022], +[-0.1387498605149, 0.3860577145469], +[-0.1340639377985, 0.3860200527972], +[-0.1293840896397, 0.3859824494392], +[-0.1247101261938, 0.3859450199387], +[-0.1200418558478, 0.3859078774129], +[-0.1153790852381, 0.3858711324824], +[-0.110721619272, 0.3858348931227], +[-0.1060692611513, 0.3857992645171], +[-0.1014218124009, 0.3857643489097], +[-0.09677907289943, 0.3857302454602], +[-0.09214084091491, 0.3856970501002], +[-0.08750691314312, 0.3856648553918], +[-0.08287708475031, 0.3856337503886], +[-0.07825114941956, 0.3856038204996], +[-0.07362889940096, 0.3855751473568], +[-0.06901012556569, 0.3855478086866], +[-0.06439461746373, 0.3855218781852], +[-0.05978216338547, 0.3854974253992], +[-0.05517255042685, 0.3854745156117], +[-0.05056556455801, 0.385453209733], +[-0.04596099069548, 0.3854335641984], +[-0.04135861277743, 0.3854156308722], +[-0.03675821384219, 0.3853994569587], +[-0.03215957610943, 0.3853850849198], +[-0.02756248106418, 0.3853725524014], +[-0.02296670954313, 0.3853618921667], +[-0.01837204182316, 0.3853531320384], +[-0.01377825771167, 0.3853462948488], +[-0.009185136638565, 0.3853413983992], +[-0.00459245774948, 0.3853384554277], +[-1.592334560068e-16, 0.3853374735864], +[0.00459245774948, 0.3853384554277], +[0.009185136638565, 0.3853413983992], +[0.01377825771167, 0.3853462948488], +[0.01837204182316, 0.3853531320384], +[0.02296670954313, 0.3853618921667], +[0.02756248106418, 0.3853725524014], +[0.03215957610943, 0.3853850849198], +[0.03675821384219, 0.3853994569587], +[0.04135861277743, 0.3854156308722], +[0.04596099069548, 0.3854335641984], +[0.05056556455801, 0.385453209733], +[0.05517255042685, 0.3854745156117], +[0.05978216338547, 0.3854974253992], +[0.06439461746373, 0.3855218781852], +[0.06901012556569, 0.3855478086866], +[0.07362889940096, 0.3855751473568], +[0.07825114941956, 0.3856038204996], +[0.08287708475031, 0.3856337503886], +[0.08750691314312, 0.3856648553918], +[0.09214084091491, 0.3856970501002], +[0.09677907289943, 0.3857302454602], +[0.1014218124009, 0.3857643489097], +[0.1060692611513, 0.3857992645171], +[0.110721619272, 0.3858348931227], +[0.1153790852381, 0.3858711324824], +[0.1200418558478, 0.3859078774129], +[0.1247101261938, 0.3859450199387], +[0.1293840896397, 0.3859824494392], +[0.1340639377985, 0.3860200527972], +[0.1387498605149, 0.3860577145469], +[0.1434420458507, 0.386095317022], +[0.1481406800729, 0.3861327405039], +[0.1528459476445, 0.3861698633679], +[0.157558031218, 0.3862065622299], +[0.1622771116309, 0.3862427120906], +[0.1670033679042, 0.3862781864789], +[0.1717369772418, 0.3863128575936], +[0.1764781150325, 0.3863465964427], +[0.181226954853, 0.3863792729818], +[0.185983668473, 0.386410756249], +[0.1907484258606, 0.3864409144987], +[0.1955213951893, 0.3864696153322], +[0.200302811707, 0.3864961573477], +[-0.1975667344755, 0.3912346701246], +[-0.1927962561144, 0.3912004313196], +[-0.1880339052266, 0.3911642975336], +[-0.1832797914759, 0.3911268831886], +[-0.1785337442186, 0.3910883232653], +[-0.1737955909667, 0.3910487520499], +[-0.1690651573801, 0.3910083029984], +[-0.1643422672588, 0.390967108599], +[-0.1596267425371, 0.3909253002314], +[-0.1549184032797, 0.3908830080246], +[-0.1502170676782, 0.3908403607116], +[-0.1455225520509, 0.3907974854826], +[-0.1408346708442, 0.3907545078368], +[-0.1361532366365, 0.3907115514318], +[-0.1314780601446, 0.3906687379323], +[-0.1268089502327, 0.3906261868576], +[-0.1221457139253, 0.390584015428], +[-0.1174881564216, 0.3905423384111], +[-0.1128360811149, 0.3905012679682], +[-0.1081892896146, 0.3904609134998], +[-0.1035475817715, 0.3904213814934], +[-0.09891075570815, 0.3903827753707], +[-0.09427860785127, 0.3903451953375], +[-0.08965093296974, 0.3903087382342], +[-0.08502752421562, 0.3902734973901], +[-0.08040817316957, 0.3902395624792], +[-0.07579266989034, 0.3902070193799], +[-0.07118080296834, 0.3901759500381], +[-0.06657235958327, 0.390146432335], +[-0.06196712556574, 0.390118539959], +[-0.05736488546295, 0.3900923422831], +[-0.05276542260813, 0.390067904248], +[-0.04816851919369, 0.390045286251], +[-0.04357395634806, 0.390024544042], +[-0.0389815142158, 0.390005728626], +[-0.03439097204098, 0.3899888861728], +[-0.02980210825355, 0.3899740579357], +[-0.02521470055835, 0.3899612801767], +[-0.02062852602667, 0.3899505841017], +[-0.01604336118994, 0.3899419958032], +[-0.01145898213525, 0.3899355362131], +[-0.006875164602506, 0.3899312210643], +[-0.002291684082733, 0.3899290608612], +[0.002291684082733, 0.3899290608612], +[0.006875164602506, 0.3899312210643], +[0.01145898213525, 0.3899355362131], +[0.01604336118994, 0.3899419958032], +[0.02062852602667, 0.3899505841017], +[0.02521470055835, 0.3899612801767], +[0.02980210825355, 0.3899740579357], +[0.03439097204098, 0.3899888861728], +[0.0389815142158, 0.390005728626], +[0.04357395634806, 0.390024544042], +[0.04816851919369, 0.390045286251], +[0.05276542260813, 0.390067904248], +[0.05736488546295, 0.3900923422831], +[0.06196712556574, 0.390118539959], +[0.06657235958327, 0.390146432335], +[0.07118080296834, 0.3901759500381], +[0.07579266989034, 0.3902070193799], +[0.08040817316957, 0.3902395624792], +[0.08502752421562, 0.3902734973901], +[0.08965093296974, 0.3903087382342], +[0.09427860785127, 0.3903451953375], +[0.09891075570815, 0.3903827753707], +[0.1035475817715, 0.3904213814934], +[0.1081892896146, 0.3904609134998], +[0.1128360811149, 0.3905012679682], +[0.1174881564216, 0.3905423384111], +[0.1221457139253, 0.390584015428], +[0.1268089502327, 0.3906261868576], +[0.1314780601446, 0.3906687379323], +[0.1361532366365, 0.3907115514318], +[0.1408346708442, 0.3907545078368], +[0.1455225520509, 0.3907974854826], +[0.1502170676782, 0.3908403607116], +[0.1549184032797, 0.3908830080246], +[0.1596267425371, 0.3909253002314], +[0.1643422672589, 0.390967108599], +[0.1690651573801, 0.3910083029984], +[0.1737955909667, 0.3910487520499], +[0.1785337442186, 0.3910883232653], +[0.1832797914759, 0.3911268831886], +[0.1880339052266, 0.3911642975336], +[0.1927962561144, 0.3912004313196], +[0.1975667344863, 0.3912346701281], +[-0.1948352217271, 0.3959659065889], +[-0.1900753738242, 0.3959241634297], +[-0.1853237885015, 0.3958806331284], +[-0.1805804647951, 0.3958360025812], +[-0.1758452295622, 0.3957904094347], +[-0.1711179077632, 0.3957439905973], +[-0.1663983224521, 0.3956968820999], +[-0.1616862947675, 0.3956492189519], +[-0.1569816439251, 0.3956011349966], +[-0.1522841872127, 0.395552762763], +[-0.1475937399858, 0.3955042333154], +[-0.1429101156668, 0.395455676101], +[-0.1382331257455, 0.3954072187959], +[-0.1335625797827, 0.3953589871489], +[-0.1288982854167, 0.3953111048241], +[-0.1242400483728, 0.3952636932424], +[-0.1195876724756, 0.3952168714222], +[-0.1149409596653, 0.3951707558197], +[-0.1102997100174, 0.3951254601687], +[-0.1056637217658, 0.395081095321], +[-0.1010327913307, 0.3950377690877], +[-0.09640671334961, 0.3949955860812], +[-0.09178528071286, 0.3949546475587], +[-0.08716828460364, 0.3949150512683], +[-0.08255551454197, 0.3948768912974], +[-0.07794675843319, 0.3948402579234], +[-0.07334180262085, 0.3948052374694], +[-0.06874043194389, 0.3947719121625], +[-0.06414242979827, 0.3947403599976], +[-0.05954757820278, 0.3947106546058], +[-0.05495565786908, 0.3946828651288], +[-0.05036644827587, 0.394657056099], +[-0.04577972774689, 0.3946332873264], +[-0.04119527353273, 0.3946116137924], +[-0.03661286189616, 0.3945920855518], +[-0.03203226820088, 0.3945747476415], +[-0.02745326700317, 0.3945596399991], +[-0.0228756321465, 0.3945467973886], +[-0.01829913685856, 0.3945362493367], +[-0.01372355385044, 0.3945280200776], +[-0.009148655417762, 0.3945221285074], +[-0.004574213543156, 0.394518588149], +[0, 0.3945174071264], +[0.004574213543156, 0.394518588149], +[0.009148655417763, 0.3945221285074], +[0.01372355385044, 0.3945280200776], +[0.01829913685855, 0.3945362493367], +[0.0228756321465, 0.3945467973886], +[0.02745326700317, 0.3945596399991], +[0.03203226820088, 0.3945747476415], +[0.03661286189616, 0.3945920855518], +[0.04119527353272, 0.3946116137924], +[0.04577972774689, 0.3946332873264], +[0.05036644827587, 0.394657056099], +[0.05495565786908, 0.3946828651288], +[0.05954757820278, 0.3947106546058], +[0.06414242979827, 0.3947403599976], +[0.0687404319439, 0.3947719121625], +[0.07334180262085, 0.3948052374694], +[0.07794675843319, 0.3948402579234], +[0.08255551454197, 0.3948768912974], +[0.08716828460364, 0.3949150512683], +[0.09178528071286, 0.3949546475587], +[0.09640671334961, 0.3949955860812], +[0.1010327913307, 0.3950377690877], +[0.1056637217658, 0.395081095321], +[0.1102997100174, 0.3951254601687], +[0.1149409596653, 0.3951707558197], +[0.1195876724756, 0.3952168714223], +[0.1242400483728, 0.3952636932424], +[0.1288982854167, 0.3953111048241], +[0.1335625797827, 0.3953589871489], +[0.1382331257455, 0.3954072187959], +[0.1429101156668, 0.395455676101], +[0.1475937399858, 0.3955042333154], +[0.1522841872127, 0.395552762763], +[0.1569816439251, 0.3956011349966], +[0.1616862947675, 0.3956492189519], +[0.1663983224521, 0.3956968820999], +[0.1711179077632, 0.3957439905973], +[0.1758452295622, 0.3957904094347], +[0.1805804647951, 0.3958360025812], +[0.1853237885015, 0.3958806331284], +[0.1900753738242, 0.3959241634297], +[0.1948352217341, 0.3959659065912], +[-0.1921079097297, 0.4006898990645], +[-0.1873588583108, 0.4006406244642], +[-0.1826181868935, 0.4005897354702], +[-0.1778858008954, 0.400537930108], +[-0.173161524644, 0.4004853487769], +[-0.1684451805143, 0.4004321310931], +[-0.1637365889172, 0.4003784157445], +[-0.1590355682886, 0.400324340343], +[-0.1543419350814, 0.4002700412732], +[-0.1496555037581, 0.4002156535391], +[-0.1449760867867, 0.4001613106079], +[-0.140303494638, 0.4001071442518], +[-0.1356375357862, 0.4000532843877], +[-0.130978016712, 0.399999858915], +[-0.1263247419092, 0.3999469935517], +[-0.1216775138942, 0.3998948116703], +[-0.117036133219, 0.3998434341312], +[-0.1124003984886, 0.3997929791172], +[-0.1077701063811, 0.3997435619667], +[-0.1031450516732, 0.3996952950084], +[-0.09852502726911, 0.3996482873956], +[-0.09390982423402, 0.3996026449423], +[-0.08929923183212, 0.3995584699616], +[-0.0846930375691, 0.3995158611051], +[-0.08009102723942, 0.3994749132062], +[-0.07549298497813, 0.3994357171259], +[-0.07089869331744, 0.3993983596033], +[-0.06630793324795, 0.3993629231093], +[-0.0617204842845, 0.3993294857069], +[-0.05713612453661, 0.3992981209152], +[-0.05255463078329, 0.3992688975809], +[-0.04797577855221, 0.3992418797558], +[-0.043399342203, 0.3992171265813], +[-0.03882509501446, 0.3991946921808], +[-0.03425280927546, 0.3991746255602], +[-0.0296822563794, 0.3991569705168], +[-0.02511320692165, 0.3991417655573], +[-0.02054543080003, 0.399129043825], +[-0.01597869731767, 0.3991188330372], +[-0.01141277528815, 0.3991111554316], +[-0.006847433142369, 0.3991060277244], +[-0.002282439036862, 0.3991034610777], +[0.002282439036861, 0.3991034610777], +[0.006847433142369, 0.3991060277244], +[0.01141277528815, 0.3991111554316], +[0.01597869731767, 0.3991188330372], +[0.02054543080003, 0.399129043825], +[0.02511320692165, 0.3991417655573], +[0.0296822563794, 0.3991569705168], +[0.03425280927546, 0.3991746255602], +[0.03882509501446, 0.3991946921808], +[0.043399342203, 0.3992171265813], +[0.04797577855221, 0.3992418797558], +[0.05255463078329, 0.3992688975809], +[0.05713612453661, 0.3992981209152], +[0.0617204842845, 0.3993294857069], +[0.06630793324794, 0.3993629231093], +[0.07089869331744, 0.3993983596033], +[0.07549298497813, 0.3994357171259], +[0.08009102723942, 0.3994749132062], +[0.0846930375691, 0.3995158611051], +[0.08929923183212, 0.3995584699616], +[0.09390982423402, 0.3996026449423], +[0.09852502726911, 0.3996482873956], +[0.1031450516732, 0.3996952950084], +[0.1077701063811, 0.3997435619667], +[0.1124003984886, 0.3997929791172], +[0.117036133219, 0.3998434341312], +[0.1216775138942, 0.3998948116703], +[0.1263247419092, 0.3999469935517], +[0.130978016712, 0.399999858915], +[0.1356375357862, 0.4000532843877], +[0.140303494638, 0.4001071442518], +[0.1449760867867, 0.4001613106079], +[0.1496555037581, 0.4002156535391], +[0.1543419350814, 0.4002700412732], +[0.1590355682886, 0.400324340343], +[0.1637365889172, 0.4003784157445], +[0.1684451805143, 0.4004321310931], +[0.173161524644, 0.4004853487769], +[0.1778858008954, 0.400537930108], +[0.1826181868935, 0.4005897354702], +[0.1873588583108, 0.4006406244642], +[0.1921079097334, 0.4006898990658], +[-0.1893846391679, 0.4054065010832], +[-0.1846468207247, 0.4053496253716], +[-0.1799172128538, 0.4052914169075], +[-0.1751959135709, 0.4052324796311], +[-0.1704827446415, 0.4051729567842], +[-0.165777525819, 0.4051129907787], +[-0.1610800748311, 0.4050527230463], +[-0.156390207368, 0.4049922938843], +[-0.1517077370719, 0.4049318422996], +[-0.1470324755293, 0.4048715058486], +[-0.142364232265, 0.4048114204756], +[-0.1377028147394, 0.4047517203476], +[-0.1330480283482, 0.4046925376881], +[-0.1283996764253, 0.4046340026081], +[-0.1237575602495, 0.4045762429358], +[-0.1191214790542, 0.4045193840454], +[-0.1144912300411, 0.4044635486841], +[-0.1098666083987, 0.4044088567995], +[-0.1052474073238, 0.4043554253668], +[-0.1006334180482, 0.4043033682159], +[-0.09602442986987, 0.4042527958598], +[-0.0914202301889, 0.4042038153242], +[-0.08682060454795, 0.4041565299795], +[-0.08222533667798, 0.4041110393742], +[-0.07763420854879, 0.404067439073], +[-0.07304700042457, 0.4040258204964], +[-0.0684634909246, 0.4039862707667], +[-0.06388345708874, 0.4039488725571], +[-0.05930667444804, 0.4039137039469], +[-0.05473291710007, 0.4038808382832], +[-0.05016195778895, 0.4038503440477], +[-0.04559356799001, 0.4038222847325], +[-0.04102751799869, 0.403796718722], +[-0.03646357702364, 0.4037736991839], +[-0.03190151328363, 0.4037532739688], +[-0.02734109410806, 0.4037354855188], +[-0.02278208604067, 0.4037203707862], +[-0.01822425494622, 0.4037079611613], +[-0.0136673661197, 0.4036982824118], +[-0.009111184397582, 0.403691354632], +[-0.004555474270982, 0.4036871922036], +[0, 0.4036858037668], +[0.004555474270982, 0.4036871922036], +[0.009111184397582, 0.403691354632], +[0.0136673661197, 0.4036982824118], +[0.01822425494622, 0.4037079611613], +[0.02278208604067, 0.4037203707862], +[0.02734109410806, 0.4037354855188], +[0.03190151328363, 0.4037532739688], +[0.03646357702364, 0.4037736991838], +[0.04102751799869, 0.403796718722], +[0.04559356799001, 0.4038222847325], +[0.05016195778895, 0.4038503440477], +[0.05473291710007, 0.4038808382832], +[0.05930667444804, 0.4039137039469], +[0.06388345708874, 0.4039488725571], +[0.06846349092459, 0.4039862707667], +[0.07304700042457, 0.4040258204964], +[0.07763420854879, 0.404067439073], +[0.08222533667798, 0.4041110393742], +[0.08682060454795, 0.4041565299795], +[0.0914202301889, 0.4042038153242], +[0.09602442986987, 0.4042527958598], +[0.1006334180482, 0.4043033682159], +[0.1052474073238, 0.4043554253668], +[0.1098666083987, 0.4044088567995], +[0.1144912300411, 0.4044635486841], +[0.1191214790542, 0.4045193840454], +[0.1237575602495, 0.4045762429358], +[0.1283996764253, 0.4046340026081], +[0.1330480283482, 0.4046925376881], +[0.1377028147391, 0.4047517203473], +[0.142364232265, 0.4048114204756], +[0.1470324755293, 0.4048715058486], +[0.1517077370719, 0.4049318422996], +[0.156390207368, 0.4049922938843], +[0.1610800748311, 0.4050527230463], +[0.165777525819, 0.4051129907787], +[0.1704827446415, 0.4051729567842], +[0.1751959135709, 0.4052324796311], +[0.1799172128538, 0.4052914169075], +[0.1846468207247, 0.4053496253716], +[0.1893846391794, 0.4054065010876], +[-0.1866660734783, 0.4101152547698], +[-0.1819393734246, 0.4100509751689], +[-0.1772209801304, 0.4099854878732], +[-0.1725109180028, 0.4099194631171], +[-0.1678090062106, 0.4098530470786], +[-0.1631150618474, 0.4097863850569], +[-0.1584288999155, 0.4097196213165], +[-0.1537503333127, 0.409652898927], +[-0.1490791728201, 0.409586359601], +[-0.1444152270932, 0.4095201435278], +[-0.1397583026553, 0.4094543892049], +[-0.1351082038931, 0.4093892332668], +[-0.1304647330568, 0.4093248103111], +[-0.1258276902624, 0.4092612527233], +[-0.1211968734986, 0.4091986904989], +[-0.1165720786368, 0.4091372510652], +[-0.1119530994458, 0.4090770591014], +[-0.1073397276113, 0.4090182363588], +[-0.1027317527587, 0.4089609014802], +[-0.09812896248205, 0.408905169821], +[-0.09353114237735, 0.4088511532699], +[-0.08893807608075, 0.4087989600724], +[-0.08434954531233, 0.4087486946553], +[-0.07976532992508, 0.4087004574551], +[-0.0751852079591, 0.4086543447487], +[-0.07060895570136, 0.4086104484886], +[-0.06603634775066, 0.4085688561428], +[-0.06146715708806, 0.4085296505396], +[-0.05690115515244, 0.4084929097181], +[-0.05233811192126, 0.408458706786], +[-0.04777779599625, 0.4084271097841], +[-0.04321997469396, 0.4083981815577], +[-0.03866441414077, 0.4083719796382], +[-0.0341108793723, 0.4083485561316], +[-0.02955913443674, 0.4083279576179], +[-0.02500894250195, 0.4083102250596], +[-0.02046006596582, 0.4082953937209], +[-0.01591226656961, 0.4082834930973], +[-0.01136530551376, 0.408274546857], +[-0.006818943575914, 0.4082685727931], +[-0.002272941230493, 0.4082655827876], +[0.002272941230492, 0.4082655827876], +[0.006818943575914, 0.4082685727931], +[0.01136530551376, 0.408274546857], +[0.01591226656961, 0.4082834930973], +[0.02046006596582, 0.4082953937209], +[0.02500894250195, 0.4083102250596], +[0.02955913443674, 0.4083279576179], +[0.0341108793723, 0.4083485561316], +[0.03866441414077, 0.4083719796382], +[0.04321997469396, 0.4083981815577], +[0.04777779599625, 0.4084271097841], +[0.05233811192126, 0.408458706786], +[0.05690115515244, 0.4084929097181], +[0.06146715708806, 0.4085296505396], +[0.06603634775066, 0.4085688561428], +[0.07060895570136, 0.4086104484886], +[0.0751852079591, 0.4086543447487], +[0.07976532992508, 0.4087004574551], +[0.08434954531233, 0.4087486946553], +[0.08893807608075, 0.4087989600724], +[0.09353114237735, 0.4088511532699], +[0.09812896248205, 0.408905169821], +[0.1027317527587, 0.4089609014802], +[0.1073397276113, 0.4090182363588], +[0.1119530994458, 0.4090770591014], +[0.1165720786368, 0.4091372510652], +[0.1211968734986, 0.4091986904989], +[0.1258276902625, 0.4092612527233], +[0.1304647330568, 0.4093248103111], +[0.1351082038931, 0.4093892332668], +[0.1397583026553, 0.4094543892049], +[0.1444152270932, 0.4095201435278], +[0.1490791728201, 0.409586359601], +[0.1537503333127, 0.409652898927], +[0.1584288999155, 0.4097196213165], +[0.1631150618474, 0.4097863850569], +[0.1678090062106, 0.4098530470786], +[0.1725109180028, 0.4099194631171], +[0.1772209801304, 0.4099854878732], +[0.1819393734246, 0.410050975169], +[0.1866660734872, 0.4101152547734], +[-0.183952190776, 0.4148167127431], +[-0.1792366300295, 0.4147444808588], +[-0.1745296038237, 0.4146717568027], +[-0.1698309308186, 0.4145986905574], +[-0.1651404275498, 0.4145254313345], +[-0.1604579084098, 0.4144521274155], +[-0.1557831856305, 0.4143789259902], +[-0.1511160692676, 0.4143059729907], +[-0.1464563671873, 0.4142334129219], +[-0.1418038850558, 0.4141613886892], +[-0.1371584263319, 0.4140900414226], +[-0.1325197922616, 0.4140195102984], +[-0.1278877818782, 0.4139499323585], +[-0.1232621920037, 0.413881442327], +[-0.1186428172567, 0.4138141724255], +[-0.1140294500623, 0.4137482521869], +[-0.1094218806684, 0.4136838082679], +[-0.1048198971657, 0.413620964262], +[-0.100223285513, 0.4135598405109], +[-0.09563182956754, 0.4135005539183], +[-0.09104531112121, 0.4134432177635], +[-0.08646350994145, 0.4133879415172], +[-0.08188620381844, 0.4133348306599], +[-0.07731316861765, 0.413283986503], +[-0.07274417833825, 0.4132355060137], +[-0.06817900517724, 0.4131894816441], +[-0.06361741959934, 0.4131460011654], +[-0.05905919041255, 0.4131051475082], +[-0.05450408484931, 0.4130669986083], +[-0.04995186865305, 0.4130316272608], +[-0.04540230617008, 0.4129991009808], +[-0.04085516044641, 0.412969481873], +[-0.0363101933295, 0.4129428265106], +[-0.03176716557433, 0.4129191858232], +[-0.02722583695377, 0.4128986049954], +[-0.02268596637265, 0.4128811233757], +[-0.01814731198524, 0.4128667743964], +[-0.0136096313157, 0.412855585506], +[-0.00907268138103, 0.4128475781121], +[-0.004536218816068, 0.4128427675376], +[0, 0.4128411629891], +[0.004536218816068, 0.4128427675376], +[0.00907268138103, 0.4128475781121], +[0.0136096313157, 0.412855585506], +[0.01814731198524, 0.4128667743964], +[0.02268596637265, 0.4128811233757], +[0.02722583695377, 0.4128986049954], +[0.03176716557433, 0.4129191858232], +[0.0363101933295, 0.4129428265106], +[0.04085516044641, 0.412969481873], +[0.04540230617008, 0.4129991009808], +[0.04995186865305, 0.4130316272608], +[0.05450408484931, 0.4130669986083], +[0.05905919041255, 0.4131051475082], +[0.06361741959934, 0.4131460011654], +[0.06817900517724, 0.4131894816441], +[0.07274417833825, 0.4132355060137], +[0.07731316861765, 0.413283986503], +[0.08188620381844, 0.4133348306599], +[0.08646350994145, 0.4133879415172], +[0.09104531112121, 0.4134432177635], +[0.09563182956754, 0.4135005539183], +[0.100223285513, 0.4135598405109], +[0.1048198971657, 0.413620964262], +[0.1094218806684, 0.4136838082679], +[0.1140294500623, 0.4137482521869], +[0.1186428172567, 0.4138141724255], +[0.1232621920037, 0.413881442327], +[0.1278877818782, 0.4139499323585], +[0.1325197922616, 0.4140195102984], +[0.1371584263319, 0.4140900414226], +[0.1418038850558, 0.4141613886892], +[0.1464563671873, 0.4142334129219], +[0.1511160692676, 0.4143059729907], +[0.1557831856305, 0.4143789259902], +[0.1604579084098, 0.4144521274155], +[0.1651404275498, 0.4145254313345], +[0.1698309308186, 0.4145986905574], +[0.1745296038237, 0.4146717568027], +[0.1792366300295, 0.4147444808588], +[0.183952190776, 0.4148167127431], +[-0.1812427691816, 0.4195095686038], +[-0.1765387054731, 0.4194299473433], +[-0.1718432004456, 0.419350030049], +[-0.167156070156, 0.4192699698849], +[-0.1624771284677, 0.4191899191968], +[-0.1578061870284, 0.4191100293477], +[-0.1531430552512, 0.4190304505495], +[-0.1484875402968, 0.4189513316897], +[-0.1438394470589, 0.4188728201559], +[-0.1391985781522, 0.4187950616556], +[-0.1345647339037, 0.4187182000333], +[-0.1299377123474, 0.4186423770845], +[-0.1253173092228, 0.4185677323671], +[-0.1207033179775, 0.4184944030102], +[-0.1160955297741, 0.4184225235214], +[-0.1114937335019, 0.4183522255925], +[-0.1068977157938, 0.4182836379044], +[-0.1023072610476, 0.4182168859307], +[-0.09772215145357, 0.418152091743], +[-0.09314216702701, 0.4180893738149], +[-0.08856708564704, 0.4180288468292], +[-0.08399668310104, 0.4179706214857], +[-0.07943073313526, 0.4179148043124], +[-0.07486900751148, 0.4178614974794], +[-0.07031127606995, 0.4178107986176], +[-0.0657573067984, 0.4177628006414], +[-0.06120686590726, 0.4177175915777], +[-0.05665971791087, 0.4176752544001], +[-0.05211562571465, 0.4176358668715], +[-0.04757435070806, 0.4175995013931], +[-0.0430356528631, 0.4175662248622], +[-0.03849929083806, 0.4175360985398], +[-0.03396502208634, 0.4175091779271], +[-0.02943260296995, 0.4174855126527], +[-0.02490178887719, 0.4174651463706], +[-0.02037233434439, 0.4174481166703], +[-0.01584399318089, 0.4174344549979], +[-0.01131651859716, 0.4174241865907], +[-0.006789663335219, 0.4174173304234], +[-0.002263179801146, 0.4174138991682], +[0.002263179801146, 0.4174138991682], +[0.006789663335219, 0.4174173304234], +[0.01131651859716, 0.4174241865907], +[0.01584399318089, 0.4174344549979], +[0.02037233434439, 0.4174481166703], +[0.02490178887719, 0.4174651463706], +[0.02943260296995, 0.4174855126527], +[0.03396502208634, 0.4175091779271], +[0.03849929083806, 0.4175360985398], +[0.0430356528631, 0.4175662248622], +[0.04757435070806, 0.4175995013931], +[0.05211562571465, 0.4176358668715], +[0.05665971791087, 0.4176752544001], +[0.06120686590726, 0.4177175915777], +[0.0657573067984, 0.4177628006414], +[0.07031127606995, 0.4178107986176], +[0.07486900751148, 0.4178614974794], +[0.07943073313526, 0.4179148043124], +[0.08399668310104, 0.4179706214857], +[0.08856708564704, 0.4180288468292], +[0.09314216702701, 0.4180893738149], +[0.09772215145357, 0.418152091743], +[0.1023072610476, 0.4182168859307], +[0.1068977157938, 0.4182836379044], +[0.1114937335019, 0.4183522255925], +[0.1160955297741, 0.4184225235214], +[0.1207033179775, 0.4184944030102], +[0.1253173092228, 0.4185677323671], +[0.1299377123474, 0.4186423770845], +[0.1345647339037, 0.4187182000333], +[0.1391985781522, 0.4187950616556], +[0.1438394470589, 0.4188728201559], +[0.1484875402968, 0.4189513316897], +[0.1531430552512, 0.4190304505495], +[0.1578061870284, 0.4191100293477], +[0.1624771284677, 0.4191899191968], +[0.167156070156, 0.4192699698849], +[0.1718432004456, 0.419350030049], +[0.1765387054731, 0.4194299473433], +[0.1812427691816, 0.4195095686038], +[-0.1785381265527, 0.4241941470534], +[-0.173845716061, 0.4241071773341], +[-0.1691618879806, 0.4240201117942], +[-0.1644864557287, 0.4239331068863], +[-0.159819230454, 0.4238463181959], +[-0.1551600210129, 0.4237599002705], +[-0.150508633948, 0.4236740064439], +[-0.1458648734684, 0.4235887886569], +[-0.1412285414339, 0.4235043972729], +[-0.1365994373409, 0.4234209808912], +[-0.1319773583133, 0.4233386861558], +[-0.1273620990962, 0.4232576575611], +[-0.122753452054, 0.4231780372552], +[-0.118151207173, 0.4230999648404], +[-0.1135551520689, 0.4230235771719], +[-0.1089650719995, 0.4229490081549], +[-0.1043807498822, 0.4228763885405], +[-0.09980196631752, 0.4228058457217], +[-0.09522849961877, 0.4227375035289], +[-0.09066012584719, 0.422671482027], +[-0.08609661885385, 0.4226078973133], +[-0.08153775032729, 0.4225468613173], +[-0.07698328984895, 0.4224884816052], +[-0.07243300495357, 0.422432861186], +[-0.0678866611974, 0.422380098323], +[-0.06334402223257, 0.4223302863506], +[-0.05880484988807, 0.4222835134969], +[-0.05426890425717, 0.4222398627136], +[-0.04973594379118, 0.4221994115127], +[-0.04520572539928, 0.4221622318124], +[-0.04067800455423, 0.4221283897919], +[-0.03615253540364, 0.4220979457556], +[-0.03162907088644, 0.4220709540088], +[-0.02710736285427, 0.4220474627438], +[-0.02258716219721, 0.4220275139385], +[-0.0180682189735, 0.4220111432668], +[-0.01355028254276, 0.4219983800221], +[-0.009033101702129, 0.4219892470546], +[-0.004516424824723, 0.4219837607213], +[1.592334560068e-16, 0.4219819308507], +[0.004516424824723, 0.4219837607213], +[0.009033101702129, 0.4219892470546], +[0.01355028254276, 0.4219983800221], +[0.0180682189735, 0.4220111432668], +[0.02258716219721, 0.4220275139385], +[0.02710736285427, 0.4220474627438], +[0.03162907088644, 0.4220709540088], +[0.03615253540364, 0.4220979457556], +[0.04067800455423, 0.4221283897919], +[0.04520572539928, 0.4221622318124], +[0.04973594379118, 0.4221994115127], +[0.05426890425717, 0.4222398627136], +[0.05880484988807, 0.4222835134969], +[0.06334402223257, 0.4223302863506], +[0.0678866611974, 0.422380098323], +[0.07243300495357, 0.422432861186], +[0.07698328984895, 0.4224884816052], +[0.08153775032729, 0.4225468613173], +[0.08609661885375, 0.4226078973131], +[0.09066012584719, 0.422671482027], +[0.09522849961877, 0.4227375035289], +[0.09980196631752, 0.4228058457217], +[0.1043807498822, 0.4228763885405], +[0.1089650719995, 0.4229490081549], +[0.1135551520689, 0.4230235771719], +[0.118151207173, 0.4230999648404], +[0.122753452054, 0.4231780372552], +[0.1273620990962, 0.4232576575611], +[0.1319773583133, 0.4233386861558], +[0.1365994373409, 0.4234209808912], +[0.1412285414339, 0.4235043972729], +[0.1458648734684, 0.4235887886569], +[0.150508633948, 0.4236740064439], +[0.1551600210129, 0.4237599002705], +[0.159819230454, 0.4238463181959], +[0.1644864557287, 0.4239331068863], +[0.1691618879806, 0.4240201117942], +[0.173845716061, 0.4241071773341], +[0.1785381265527, 0.4241941470534], +[-0.1758383788955, 0.4288702471632], +[-0.1711577795302, 0.4287759712578], +[-0.1664857859513, 0.4286818039564], +[-0.161822208896, 0.4285879051117], +[-0.1571668567539, 0.4284944336588], +[-0.15251953554, 0.428401547437], +[-0.1478800488711, 0.4283094030069], +[-0.1432481979445, 0.4282181554631], +[-0.1386237815198, 0.4281279582428], +[-0.1340065959043, 0.4280389629299], +[-0.1293964349421, 0.4279513190557], +[-0.1247930900073, 0.4278651738964], +[-0.1201963500021, 0.427780672267], +[-0.1156060013594, 0.4276979563131], +[-0.1110218280504, 0.4276171653003], +[-0.106443611599, 0.4275384354023], +[-0.1018711311002, 0.427461899488], +[-0.09730416324601, 0.4273876869076], +[-0.09274248235707, 0.4273159232798], +[-0.08818586042116, 0.4272467302795], +[-0.08363406713825, 0.4271802254273], +[-0.07908686997252, 0.4271165218812], +[-0.07454403421148, 0.4270557282324], +[-0.07000532303209, 0.426997948304], +[-0.06547049757403, 0.4269432809557], +[-0.06093931702, 0.4268918198933], +[-0.05641153868311, 0.426843653486], +[-0.05188691810102, 0.42679886459], +[-0.04736520913688, 0.4267575303813], +[-0.04284616408665, 0.4267197221972], +[-0.03832953379263, 0.4266855053879], +[-0.03381506776283, 0.426654939179], +[-0.02930251429575, 0.4266280765451], +[-0.02479162061023, 0.4266049640959], +[-0.0202821329798, 0.4265856419753], +[-0.01577379687108, 0.4265701437728], +[-0.01126635708563, 0.4265584964503], +[-0.006759557904718, 0.4265507202817], +[-0.002253143236297, 0.4265468288083], +[0.002253143236297, 0.4265468288083], +[0.006759557904717, 0.4265507202817], +[0.01126635708563, 0.4265584964503], +[0.01577379687108, 0.4265701437728], +[0.0202821329798, 0.4265856419753], +[0.02479162061023, 0.4266049640959], +[0.02930251429575, 0.4266280765451], +[0.03381506776283, 0.426654939179], +[0.03832953379263, 0.4266855053879], +[0.04284616408665, 0.4267197221972], +[0.04736520913688, 0.4267575303813], +[0.05188691810102, 0.42679886459], +[0.05641153868311, 0.426843653486], +[0.06093931702, 0.4268918198933], +[0.06547049757403, 0.4269432809557], +[0.07000532303209, 0.426997948304], +[0.07454403421148, 0.4270557282324], +[0.07908686997252, 0.4271165218812], +[0.08363406713825, 0.4271802254273], +[0.08818586042116, 0.4272467302795], +[0.09274248235707, 0.4273159232798], +[0.09730416324601, 0.4273876869076], +[0.1018711311002, 0.427461899488], +[0.106443611599, 0.4275384354023], +[0.1110218280504, 0.4276171653003], +[0.1156060013594, 0.4276979563131], +[0.1201963500021, 0.427780672267], +[0.1247930900073, 0.4278651738964], +[0.1293964349421, 0.4279513190557], +[0.1340065959043, 0.4280389629299], +[0.1386237815198, 0.4281279582428], +[0.1432481979445, 0.4282181554631], +[0.1478800488711, 0.4283094030069], +[0.15251953554, 0.428401547437], +[0.1571668567539, 0.4284944336588], +[0.161822208896, 0.4285879051117], +[0.1664857859513, 0.4286818039564], +[0.1711577795302, 0.4287759712578], +[0.1758383788955, 0.4288702471632], +[-0.1731436436021, 0.4335376656044], +[-0.1684750151121, 0.4334361271573], +[-0.1638150154848, 0.4333349060919], +[-0.1591634527358, 0.4332341657784], +[-0.1545201324464, 0.4331340686157], +[-0.1498848577371, 0.4330347758469], +[-0.1452574292399, 0.4329364473684], +[-0.1406376450754, 0.4328392415344], +[-0.1360253008326, 0.4327433149567], +[-0.1314201895535, 0.4326488223008], +[-0.1268221017204, 0.4325559160768], +[-0.122230825249, 0.4324647464281], +[-0.1176461454859, 0.4323754609158], +[-0.1130678452116, 0.4322882043009], +[-0.1084957046494, 0.432203118324], +[-0.1039295014795, 0.4321203414838], +[-0.0993690108605, 0.4320400088139], +[-0.09481400545693, 0.4319622516599], +[-0.0902642554737, 0.4318871974568], +[-0.08571952869785, 0.4318149695071], +[-0.08117959054745, 0.431745686761], +[-0.07664420412809, 0.4316794635999], +[-0.07211313029684, 0.4316164096229], +[-0.06758612773387, 0.4315566294383], +[-0.06306295302164, 0.4315002224599], +[-0.05854336073178, 0.4314472827105], +[-0.05402710351927, 0.4313978986321], +[-0.04951393222412, 0.4313521529046], +[-0.04500359598, 0.4313101222735], +[-0.04049584232977, 0.4312718773876], +[-0.03599041734745, 0.4312374826475], +[-0.0314870657664, 0.4312069960661], +[-0.026985531113, 0.4311804691412], +[-0.02248555584569, 0.4311579467412], +[-0.01798688149853, 0.4311394670052], +[-0.01348924882887, 0.4311250612569], +[-0.008992397968445, 0.4311147539333], +[-0.004496068577347, 0.4311085625299], +[0, 0.4311064975597], +[0.004496068577347, 0.4311085625299], +[0.008992397968445, 0.4311147539333], +[0.01348924882887, 0.4311250612569], +[0.01798688149853, 0.4311394670052], +[0.02248555584569, 0.4311579467412], +[0.026985531113, 0.4311804691412], +[0.0314870657664, 0.4312069960661], +[0.03599041734745, 0.4312374826475], +[0.04049584232977, 0.4312718773876], +[0.04500359598, 0.4313101222735], +[0.04951393222412, 0.4313521529046], +[0.05402710351927, 0.4313978986321], +[0.05854336073178, 0.4314472827105], +[0.06306295302164, 0.4315002224599], +[0.06758612773387, 0.4315566294383], +[0.07211313029684, 0.4316164096229], +[0.07664420412809, 0.4316794635999], +[0.08117959054745, 0.431745686761], +[0.08571952869785, 0.4318149695071], +[0.0902642554737, 0.4318871974568], +[0.09481400545693, 0.4319622516599], +[0.0993690108605, 0.4320400088139], +[0.1039295014795, 0.4321203414838], +[0.1084957046494, 0.432203118324], +[0.1130678452116, 0.4322882043009], +[0.1176461454859, 0.4323754609158], +[0.122230825249, 0.4324647464281], +[0.1268221017204, 0.4325559160768], +[0.1314201895535, 0.4326488223008], +[0.1360253008326, 0.4327433149567], +[0.1406376450754, 0.4328392415344], +[0.1452574292399, 0.4329364473684], +[0.1498848577371, 0.4330347758469], +[0.1545201324464, 0.4331340686157], +[0.1591634527358, 0.4332341657784], +[0.1638150154848, 0.4333349060919], +[0.1684750151121, 0.4334361271573], +[0.1731436436021, 0.4335376656044], +[-0.1704539810967, 0.4381955741696], +[-0.1657975435982, 0.4380874405878], +[-0.1611496993864, 0.4379792152942], +[-0.1565103121215, 0.4378716876715], +[-0.151879184527, 0.4377650237026], +[-0.1472561167708, 0.4376593881516], +[-0.1426409064368, 0.4375549443643], +[-0.1380333484995, 0.4374518540644], +[-0.1334332353022, 0.4373502771442], +[-0.1288403565396, 0.4372503714509], +[-0.1242544992446, 0.4371522925689], +[-0.1196754477808, 0.4370561935972], +[-0.1151029838394, 0.4369622249249], +[-0.1105368864433, 0.4368705340027], +[-0.1059769319558, 0.4367812651122], +[-0.1014228940974, 0.4366945591341], +[-0.0968745439681, 0.4366105533146], +[-0.09233165007807, 0.4365293810323], +[-0.08779397838503, 0.4364511715651], +[-0.08326129233969, 0.4363760498585], +[-0.07873335293891, 0.4363041362963], +[-0.07420991878706, 0.4362355464744], +[-0.06969074616543, 0.4361703909786], +[-0.06517558910986, 0.4361087751674], +[-0.0606641994965, 0.4360507989607], +[-0.05615632713578, 0.4359965566364], +[-0.05165171987424, 0.4359461366334], +[-0.04715012370419, 0.4358996213654], +[-0.0426512828809, 0.4358570870434], +[-0.03815494004697, 0.4358186035094], +[-0.03366083636353, 0.4357842340827], +[-0.0291687116478, 0.4357540354178], +[-0.02467830451658, 0.4357280573764], +[-0.02018935253495, 0.4357063429138], +[-0.01570159237, 0.4356889279807], +[-0.01121475994806, 0.4356758414377], +[-0.006728590616027, 0.4356671049905], +[-0.002242819304852, 0.4356627331381], +[0.002242819304852, 0.4356627331381], +[0.006728590616024, 0.4356671049905], +[0.01121475994806, 0.4356758414377], +[0.01570159237, 0.4356889279807], +[0.02018935253487, 0.4357063429132], +[0.02467830451658, 0.4357280573764], +[0.0291687116478, 0.4357540354178], +[0.03366083636353, 0.4357842340827], +[0.03815494004697, 0.4358186035094], +[0.0426512828809, 0.4358570870434], +[0.04715012370419, 0.4358996213654], +[0.05165171987424, 0.4359461366334], +[0.05615632713578, 0.4359965566364], +[0.0606641994965, 0.4360507989607], +[0.06517558910986, 0.4361087751674], +[0.06969074616544, 0.4361703909786], +[0.07420991878706, 0.4362355464744], +[0.07873335293891, 0.4363041362963], +[0.08326129233969, 0.4363760498585], +[0.08779397838503, 0.4364511715651], +[0.09233165007807, 0.4365293810323], +[0.0968745439681, 0.4366105533146], +[0.1014228940974, 0.4366945591341], +[0.1059769319558, 0.4367812651122], +[0.1105368864433, 0.4368705340027], +[0.1151029838394, 0.4369622249249], +[0.1196754477808, 0.4370561935972], +[0.1242544992446, 0.4371522925689], +[0.1288403565396, 0.4372503714509], +[0.1334332353022, 0.4373502771442], +[0.1380333484995, 0.4374518540644], +[0.1426409064368, 0.4375549443643], +[0.1472561167708, 0.4376593881516], +[0.151879184527, 0.4377650237026], +[0.1565103121215, 0.4378716876715], +[0.1611496993864, 0.4379792152942], +[0.1657975435982, 0.4380874405878], +[0.1704539830546, 0.4381955752841], +[-0.1677694341385, 0.4428451150126], +[-0.1631254874095, 0.4427297045083], +[-0.1584899622112, 0.4426145260853], +[-0.153862913803, 0.4425002670382], +[-0.1492441419943, 0.4423870970591], +[-0.1446334439393, 0.4422751845551], +[-0.1400306141061, 0.4421646964406], +[-0.1354354442486, 0.4420557979236], +[-0.1308477233835, 0.4419486522869], +[-0.1262672377709, 0.4418434206646], +[-0.1216937709004, 0.4417402618133], +[-0.1171271034829, 0.4416393318804], +[-0.1125670134477, 0.4415407841673], +[-0.1080132759467, 0.4414447688906], +[-0.1034656633647, 0.4413514329409], +[-0.09892394533726, 0.4412609196387], +[-0.09438788877573, 0.4411733684908], +[-0.08985725790039, 0.4410889149456], +[-0.08533181428154, 0.4410076901493], +[-0.08081131688893, 0.4409298207038], +[-0.0762955221498, 0.4408554284269], +[-0.07178418401549, 0.4407846301163], +[-0.067277054037, 0.4407175373178], +[-0.06277388144913, 0.4406542560996], +[-0.05827441326361, 0.4405948868331], +[-0.05377839437071, 0.440539523981], +[-0.04928556764948, 0.4404882558949], +[-0.04479567408622, 0.4404411646222], +[-0.04030845290085, 0.4403983257249], +[-0.035823641681, 0.4403598081089], +[-0.03134097652311, 0.4403256738677], +[-0.02686019218031, 0.4402959781387], +[-0.02238102221627, 0.4402707689753], +[-0.01790319916459, 0.4402500872334], +[-0.01342645469292, 0.440233966475], +[-0.008950519771175, 0.4402224328877], +[-0.004475124843049, 0.4402155052223], +[-3.184669120136e-16, 0.4402131947475], +[0.004475124843049, 0.4402155052223], +[0.008950519771175, 0.4402224328877], +[0.01342645469292, 0.440233966475], +[0.01790319916459, 0.4402500872334], +[0.02238102221627, 0.4402707689753], +[0.02686019218031, 0.4402959781387], +[0.03134097652311, 0.4403256738677], +[0.035823641681, 0.4403598081089], +[0.04030845290085, 0.4403983257249], +[0.04479567408622, 0.4404411646222], +[0.04928556764948, 0.4404882558949], +[0.05377839437071, 0.440539523981], +[0.05827441326361, 0.4405948868331], +[0.06277388144913, 0.4406542560996], +[0.067277054037, 0.4407175373178], +[0.07178418401549, 0.4407846301163], +[0.0762955221498, 0.4408554284269], +[0.08081131688894, 0.4409298207038], +[0.08533181428154, 0.4410076901493], +[0.08985725790039, 0.4410889149456], +[0.09438788877573, 0.4411733684908], +[0.09892394533727, 0.4412609196387], +[0.1034656633647, 0.4413514329409], +[0.1080132759467, 0.4414447688906], +[0.1125670134477, 0.4415407841673], +[0.1171271034829, 0.4416393318804], +[0.1216937709004, 0.4417402618133], +[0.1262672377709, 0.4418434206646], +[0.1308477233835, 0.4419486522869], +[0.1354354442486, 0.4420557979236], +[0.1400306141061, 0.4421646964406], +[0.1446334439393, 0.4422751845551], +[0.1492441419943, 0.4423870970591], +[0.153862913803, 0.4425002670382], +[0.1584899622112, 0.4426145260853], +[0.1631254874095, 0.4427297045083], +[0.167769434149, 0.4428451150182], +[-0.1650906343922, 0.4474851508501], +[-0.160458970669, 0.4473627091669], +[-0.1558359303463, 0.4472406303045], +[-0.1512213864919, 0.4471196974783], +[-0.146615135942, 0.4470000842207], +[-0.1420169727713, 0.4468819627101], +[-0.1374266882589, 0.4467655035538], +[-0.132844070859, 0.446650875564], +[-0.1282689061745, 0.4465382455291], +[-0.1237009769373, 0.4464277779789], +[-0.1191400629931, 0.4463196349456], +[-0.1145859412925, 0.4462139757198], +[-0.1100383858886, 0.446110956603], +[-0.1054971679414, 0.4460107306566], +[-0.1009620557296, 0.4459134474488], +[-0.09643281467053, 0.4458192527993], +[-0.09190920734751, 0.4457282885232], +[-0.08739099354626, 0.4456406921748], +[-0.08287793029993, 0.4455565967925], +[-0.07836977194312, 0.445476130645], +[-0.07386627017519, 0.4453994169812], +[-0.06936717413294, 0.445326573783], +[-0.06487223047267, 0.4452577135245], +[-0.06038118346181, 0.4451929429367], +[-0.05589377507986, 0.4451323627791], +[-0.05140974512861, 0.4450760676212], +[-0.04692883135148, 0.4450241456328], +[-0.04245076956159, 0.4449766783851], +[-0.03797529377824, 0.4449337406645], +[-0.03350213637143, 0.4448954002989], +[-0.02903102821384, 0.4448617179983], +[-0.02456169883972, 0.4448327472106], +[-0.02009387661004, 0.4448085339928], +[-0.01562728888324, 0.4447891169], +[-0.01116166219074, 0.4447745268907], +[-0.00669672241654, 0.4447647872511], +[-0.002232194979855, 0.4447599135374], +[0.002232194979854, 0.4447599135374], +[0.00669672241654, 0.4447647872511], +[0.01116166219074, 0.4447745268907], +[0.01562728888324, 0.4447891169], +[0.02009387661004, 0.4448085339928], +[0.02456169883972, 0.4448327472106], +[0.02903102821384, 0.4448617179983], +[0.03350213637143, 0.4448954002989], +[0.03797529377824, 0.4449337406645], +[0.04245076956159, 0.4449766783851], +[0.04692883135148, 0.4450241456328], +[0.05140974512861, 0.4450760676212], +[0.05589377507986, 0.4451323627791], +[0.06038118346181, 0.4451929429367], +[0.06487223047267, 0.4452577135245], +[0.06936717413294, 0.445326573783], +[0.07386627017519, 0.4453994169812], +[0.07836977194312, 0.445476130645], +[0.08287793029993, 0.4455565967925], +[0.08739099354626, 0.4456406921748], +[0.09190920734751, 0.4457282885232], +[0.09643281467053, 0.4458192527993], +[0.1009620557296, 0.4459134474488], +[0.1054971679414, 0.4460107306566], +[0.1100383858886, 0.446110956603], +[0.1145859412925, 0.4462139757198], +[0.1191400629931, 0.4463196349456], +[0.1237009769373, 0.4464277779789], +[0.1282689061745, 0.4465382455291], +[0.132844070859, 0.446650875564], +[0.1374266882589, 0.4467655035538], +[0.1420169727713, 0.4468819627101], +[0.146615135942, 0.4470000842207], +[0.1512213864919, 0.4471196974783], +[0.1558359303463, 0.4472406303045], +[0.160458970669, 0.4473627091669], +[0.1650906343959, 0.4474851508521], +[-0.1624172627934, 0.4521157348518], +[-0.1577981192787, 0.4519862419812], +[-0.1531877320924, 0.4518573169896], +[-0.1485858609515, 0.4517297698281], +[-0.1439922996556, 0.4516037780067], +[-0.1394068391289, 0.4514795176094], +[-0.1348292673839, 0.4513571630663], +[-0.1302593694888, 0.4512368869196], +[-0.1256969275403, 0.4511188595832], +[-0.1211417206414, 0.4510032490968], +[-0.1165935248859, 0.4508902208748], +[-0.1120521133488, 0.4507799374503], +[-0.1075172560844, 0.4506725582153], +[-0.1029887201312, 0.450568239157], +[-0.09846626952566, 0.4504671325921], +[-0.09394966532391, 0.4503693868992], +[-0.08943866563228, 0.4502751462492], +[-0.08493302564727, 0.4501845503378], +[-0.080432497705, 0.450097734117], +[-0.07593683134037, 0.4500148275302], +[-0.07144577335623, 0.4499359552499], +[-0.06695906790274, 0.4498612364203], +[-0.06247645656675, 0.4497907844054], +[-0.05799767847152, 0.4497247065439], +[-0.05352247038637, 0.4496631039131], +[-0.04905056684633, 0.4496060711011], +[-0.04458170028142, 0.4495536959907], +[-0.0401156011552, 0.4495060595551], +[-0.03565199811228, 0.4494632356663], +[-0.0311906181342, 0.4494252909184], +[-0.02673118670315, 0.4493922844659], +[-0.02227342797282, 0.4493642678787], +[-0.0178170649457, 0.4493412850143], +[-0.01336181965604, 0.4493233719082], +[-0.008907413357613, 0.4493105566831], +[-0.004453566715361, 0.449302859478], +[3.503136032149e-16, 0.449300292397], +[0.004453566715361, 0.449302859478], +[0.008907413357613, 0.4493105566831], +[0.01336181965604, 0.4493233719082], +[0.0178170649457, 0.4493412850143], +[0.02227342797282, 0.4493642678787], +[0.02673118670315, 0.4493922844659], +[0.0311906181342, 0.4494252909184], +[0.03565199811228, 0.4494632356663], +[0.0401156011552, 0.4495060595551], +[0.04458170028142, 0.4495536959907], +[0.04905056684633, 0.449606071101], +[0.05352247038637, 0.4496631039131], +[0.05799767847152, 0.4497247065439], +[0.06247645656675, 0.4497907844054], +[0.06695906790274, 0.4498612364203], +[0.07144577335623, 0.4499359552499], +[0.07593683134037, 0.4500148275302], +[0.080432497705, 0.450097734117], +[0.08493302564727, 0.4501845503378], +[0.08943866563228, 0.4502751462492], +[0.09394966532391, 0.4503693868992], +[0.09846626952566, 0.4504671325921], +[0.1029887201312, 0.450568239157], +[0.1075172560844, 0.4506725582153], +[0.1120521133488, 0.4507799374503], +[0.1165935248859, 0.4508902208748], +[0.1211417206414, 0.4510032490968], +[0.1256969275403, 0.4511188595832], +[0.1302593694888, 0.4512368869196], +[0.1348292673839, 0.4513571630663], +[0.1394068391289, 0.4514795176094], +[0.1439922996556, 0.4516037780067], +[0.1485858609515, 0.4517297698281], +[0.1531877320924, 0.4518573169896], +[0.1577981192787, 0.4519862419812], +[0.1624172627928, 0.4521157348514], +[-0.1597490570802, 0.4567367447458], +[-0.1551430610003, 0.4566000874111], +[-0.1505454977518, 0.4564643722526], +[-0.1459564700916, 0.4563302720387], +[-0.1413757687143, 0.4561979684015], +[-0.1368031813177, 0.4560676414709], +[-0.1322384925637, 0.4559394696366], +[-0.1276814840427, 0.4558136293019], +[-0.1231319342452, 0.455690294632], +[-0.1185896185376, 0.4555696372954], +[-0.1140543091458, 0.4554518261999], +[-0.1095257751457, 0.4553370272243], +[-0.1050037824612, 0.4552254029444], +[-0.1004880938707, 0.4551171123569], +[-0.09597846902212, 0.4550123105994], +[-0.09147466445759, 0.4549111486693], +[-0.08697643364702, 0.4548137731416], +[-0.08248352703237, 0.4547203258864], +[-0.0779956920819, 0.4546309437893], +[-0.07351267335516, 0.4545457584722], +[-0.06903421257869, 0.4544648960199], +[-0.0645600487327, 0.4543884767104], +[-0.06008991814865, 0.4543166147523], +[-0.0556235546178, 0.45424941803], +[-0.05116068951057, 0.4541869878574], +[-0.04670105190638, 0.4541294187429], +[-0.04224436873389, 0.4540767981661], +[-0.03779036492108, 0.4540292063669], +[-0.03333876355463, 0.4539867161504], +[-0.02888928604826, 0.453949392706], +[-0.0244416523191, 0.453917293445], +[-0.01999558097152, 0.4538904678545], +[-0.01555078948749, 0.4538689573711], +[-0.01110699442273, 0.4538527952745], +[-0.006663911607446, 0.4538420066004], +[-0.002221256350977, 0.4538366080761], +[0.002221256350978, 0.4538366080761], +[0.006663911607446, 0.4538420066004], +[0.01110699442273, 0.4538527952745], +[0.01555078948749, 0.4538689573711], +[0.01999558097152, 0.4538904678545], +[0.0244416523191, 0.453917293445], +[0.02888928604826, 0.453949392706], +[0.03333876355463, 0.4539867161504], +[0.03779036492108, 0.4540292063669], +[0.04224436873389, 0.4540767981661], +[0.04670105190637, 0.4541294187429], +[0.05116068951057, 0.4541869878574], +[0.0556235546178, 0.45424941803], +[0.06008991814865, 0.4543166147523], +[0.0645600487327, 0.4543884767104], +[0.06903421257869, 0.4544648960199], +[0.07351267335516, 0.4545457584722], +[0.0779956920819, 0.4546309437893], +[0.08248352703237, 0.4547203258864], +[0.08697643364702, 0.4548137731416], +[0.09147466445759, 0.4549111486693], +[0.09597846902212, 0.4550123105994], +[0.1004880938707, 0.4551171123569], +[0.1050037824612, 0.4552254029444], +[0.1095257751457, 0.4553370272243], +[0.1140543091458, 0.4554518261999], +[0.1185896185376, 0.4555696372954], +[0.1231319342452, 0.455690294632], +[0.1276814840427, 0.4558136293019], +[0.1322384925637, 0.4559394696366], +[0.1368031813177, 0.4560676414709], +[0.1413757687143, 0.4561979684015], +[0.1459564700916, 0.4563302720387], +[0.1505454977518, 0.4564643722526], +[0.1551430610003, 0.4566000874111], +[0.1597490570947, 0.4567367447546], +[-0.1570870570116, 0.4613475901023], +[-0.15249392554, 0.4612040268265], +[-0.1479093597213, 0.461061579149], +[-0.1433333490692, 0.4609209890486], +[-0.1387656810997, 0.4607824424303], +[-0.1342061402028, 0.4606461236181], +[-0.1296545075993, 0.4605122151041], +[-0.1251105613036, 0.4603808972908], +[-0.1205740760923, 0.4602523482258], +[-0.1160448234795, 0.4601267433306], +[-0.1115225716989, 0.4600042551227], +[-0.1070070856944, 0.4598850529334], +[-0.1024981271189, 0.4597693026194], +[-0.09799545434137, 0.4596571662727], +[-0.09349882246504, 0.4595488019256], +[-0.08900798335396, 0.4594443632555], +[-0.08452268567112, 0.4593439992878], +[-0.08004267492702, 0.4592478541004], +[-0.07556769353954, 0.4591560665282], +[-0.07109748090532, 0.4590687698724], +[-0.06663177348275, 0.458986091613], +[-0.06217030488683, 0.4589081531271], +[-0.05771280599576, 0.4588350694153], +[-0.05325900506928, 0.4587669488353], +[-0.04880862787858, 0.4587038928475], +[-0.04436139784756, 0.4586459957702], +[-0.03991703620492, 0.4585933445501], +[-0.03547526214676, 0.4585460185452], +[-0.03103579300911, 0.4585040893253], +[-0.02659834444965, 0.4584676204888], +[-0.02216263063783, 0.458436667498], +[-0.01772836445275, 0.4584112775344], +[-0.01329525768758, 0.4583914893739], +[-0.008863021259789, 0.458377333284], +[-0.004431365425939, 0.4583688309424], +[0, 0.4583659953795], +[0.004431365425939, 0.4583688309424], +[0.008863021259789, 0.458377333284], +[0.01329525768758, 0.4583914893739], +[0.01772836445275, 0.4584112775344], +[0.02216263063783, 0.458436667498], +[0.02659834444965, 0.4584676204888], +[0.03103579300911, 0.4585040893253], +[0.03547526214676, 0.4585460185452], +[0.03991703620492, 0.4585933445501], +[0.04436139784756, 0.4586459957702], +[0.04880862787858, 0.4587038928475], +[0.05325900506928, 0.4587669488353], +[0.05771280599576, 0.4588350694153], +[0.06217030488683, 0.4589081531271], +[0.06663177348275, 0.458986091613], +[0.07109748090532, 0.4590687698724], +[0.07556769353954, 0.4591560665282], +[0.08004267492702, 0.4592478541004], +[0.08452268567112, 0.4593439992878], +[0.08900798335396, 0.4594443632555], +[0.09349882246504, 0.4595488019256], +[0.09799545434137, 0.4596571662727], +[0.1024981271189, 0.4597693026194], +[0.1070070856944, 0.4598850529334], +[0.1115225716989, 0.4600042551227], +[0.1160448234795, 0.4601267433306], +[0.1205740760923, 0.4602523482258], +[0.1251105613036, 0.4603808972908], +[0.1296545075993, 0.4605122151041], +[0.1342061402028, 0.4606461236181], +[0.1387656810997, 0.4607824424303], +[0.1433333490692, 0.4609209890486], +[0.1479093597213, 0.461061579149], +[0.15249392554, 0.4612040268265], +[0.1570870570214, 0.4613475901085], +[-0.1544309129097, 0.4659482771975], +[-0.1498508446387, 0.4657978383663], +[-0.1452794525897, 0.4656487175399], +[-0.1407166353938, 0.4655017026479], +[-0.1361621773097, 0.4653569840281], +[-0.1316158593311, 0.4652147503533], +[-0.1270774591412, 0.4650751883686], +[-0.122546751072, 0.4649384826198], +[-0.1180235060712, 0.4648048151748], +[-0.113507491676, 0.4646743653379], +[-0.1089984719944, 0.4645473093576], +[-0.1044962076959, 0.4644238201284], +[-0.1000004560107, 0.4643040668888], +[-0.09551097073904, 0.464188214914], +[-0.0910275022712, 0.4640764252066], +[-0.08654979761785, 0.4639688541854], +[-0.08207760045225, 0.4638656533728], +[-0.07761065116418, 0.463766969084], +[-0.07314868692593, 0.4636729421176], +[-0.06869144177088, 0.4635837074493], +[-0.06423864668464, 0.4634993939317], +[-0.05979002970887, 0.4634201239992], +[-0.0553453160579, 0.4633460133824], +[-0.05090422824791, 0.463277170831], +[-0.04646648623845, 0.4632136978491], +[-0.04203180758612, 0.4631556884423], +[-0.03759990760976, 0.4631032288804], +[-0.03317049956676, 0.4630563974753], +[-0.0287432948398, 0.4630152643768], +[-0.02431800313313, 0.4629798913873], +[-0.0198943326777, 0.4629503317965], +[-0.01547199044407, 0.4629266302372], +[-0.0110506823621, 0.4629088225642], +[-0.006630113546199, 0.4628969357555], +[-0.002209988525111, 0.4628909878382], +[0.002209988525111, 0.4628909878382], +[0.006630113546199, 0.4628969357555], +[0.0110506823621, 0.4629088225642], +[0.01547199044408, 0.4629266302372], +[0.0198943326777, 0.4629503317965], +[0.02431800313313, 0.4629798913873], +[0.0287432948398, 0.4630152643768], +[0.03317049956676, 0.4630563974753], +[0.03759990760976, 0.4631032288804], +[0.04203180758612, 0.4631556884423], +[0.04646648623845, 0.4632136978491], +[0.05090422824791, 0.463277170831], +[0.0553453160579, 0.4633460133824], +[0.05979002970887, 0.4634201239992], +[0.06423864668464, 0.4634993939317], +[0.06869144177088, 0.4635837074493], +[0.07314868692593, 0.4636729421176], +[0.07761065116418, 0.463766969084], +[0.08207760045225, 0.4638656533728], +[0.08654979761785, 0.4639688541854], +[0.0910275022712, 0.4640764252066], +[0.09551097073904, 0.464188214914], +[0.1000004560107, 0.4643040668888], +[0.1044962076959, 0.4644238201284], +[0.1089984719944, 0.4645473093576], +[0.113507491676, 0.4646743653379], +[0.1180235060712, 0.4648048151748], +[0.122546751072, 0.4649384826198], +[0.1270774591412, 0.4650751883686], +[0.1316158593311, 0.4652147503533], +[0.1361621773097, 0.4653569840281], +[0.1407166353938, 0.4655017026479], +[0.1452794525897, 0.4656487175399], +[0.1498508446387, 0.4657978383663], +[0.1544309129157, 0.4659482772014], +[-0.1517807595535, 0.4705385744713], +[-0.1472139521666, 0.4703812967911], +[-0.1426559132419, 0.4702255639463], +[-0.1381064690407, 0.4700721913373], +[-0.1335654004795, 0.4699213739018], +[-0.1290324850617, 0.469773304825], +[-0.1245074968281, 0.4696281752627], +[-0.1199902063145, 0.4694861740559], +[-0.1154803805156, 0.4693474874368], +[-0.1109777828577, 0.4692122987287], +[-0.1064821731799, 0.4690807880369], +[-0.1019933077237, 0.4689531319355], +[-0.0975109391345, 0.468829503148], +[-0.09303481647219, 0.4687100702242], +[-0.08856468523399, 0.4685949972138], +[-0.08410028738891, 0.4684844433381], +[-0.07964136142477, 0.4683785626623], +[-0.07518764240789, 0.4682775037671], +[-0.07073886205622, 0.4681814094239], +[-0.06629474882581, 0.468090416274], +[-0.06185502801098, 0.4680046545128], +[-0.05741942185825, 0.4679242475822], +[-0.05298764969392, 0.4678493118715], +[-0.04855942806523, 0.4677799564292], +[-0.04413447089473, 0.4677162826881], +[-0.03971248964753, 0.4676583842039], +[-0.03529319351091, 0.46760634641], +[-0.03087628958554, 0.4675602463909], +[-0.02646148308769, 0.4675201526733], +[-0.02204847756147, 0.4674861250396], +[-0.01763697510004, 0.467458214362], +[-0.01322667657491, 0.4674364624607], +[-0.008817281871872, 0.4674209019864], +[-0.004408490132525, 0.4674115563277], +[0, 0.4674084395444], +[0.004408490132524, 0.4674115563277], +[0.008817281871872, 0.4674209019864], +[0.01322667657491, 0.4674364624607], +[0.01763697510004, 0.467458214362], +[0.02204847756147, 0.4674861250396], +[0.02646148308769, 0.4675201526733], +[0.03087628958554, 0.4675602463909], +[0.03529319351091, 0.46760634641], +[0.03971248964753, 0.4676583842039], +[0.04413447089473, 0.4677162826881], +[0.04855942806523, 0.4677799564292], +[0.05298764969392, 0.4678493118715], +[0.05741942185825, 0.4679242475822], +[0.06185502801098, 0.4680046545128], +[0.06629474882581, 0.468090416274], +[0.07073886205622, 0.4681814094239], +[0.07518764240789, 0.4682775037671], +[0.07964136142477, 0.4683785626623], +[0.08410028738891, 0.4684844433381], +[0.08856468523399, 0.4685949972138], +[0.09303481647219, 0.4687100702242], +[0.0975109391345, 0.468829503148], +[0.1019933077237, 0.4689531319355], +[0.1064821731799, 0.4690807880369], +[0.1109777828577, 0.4692122987287], +[0.1154803805156, 0.4693474874368], +[0.1199902063145, 0.4694861740559], +[0.1245074968281, 0.4696281752628], +[0.1290324850617, 0.469773304825], +[0.1335654004795, 0.4699213739018], +[0.1381064690407, 0.4700721913373], +[0.1426559132419, 0.4702255639463], +[0.1472139521666, 0.4703812967911], +[0.1517807595564, 0.4705385744732], +[-0.149136721343, 0.4751188746905], +[-0.1445833842239, 0.4749541733263], +[-0.1400388809675, 0.4747918913961], +[-0.1355029925689, 0.4746322301775], +[-0.1309754965108, 0.474475389385], +[-0.1264561667041, 0.4743215668879], +[-0.1219447734354, 0.4741709584188], +[-0.1174410833211, 0.4740237572731], +[-0.1129448592698, 0.4738801539993], +[-0.108455860453, 0.4737403360813], +[-0.1039738422861, 0.4736044876135], +[-0.09949855641844, 0.4734727889699], +[-0.09502975073575, 0.4733454164665], +[-0.09056716937331, 0.473222542021], +[-0.08611055274201, 0.4731043328083], +[-0.08165963756727, 0.4729909509145], +[-0.07721415694148, 0.4728825529908], +[-0.0727738403905, 0.4727792899089], +[-0.06833841395448, 0.4726813064188], +[-0.06390760028325, 0.4725887408115], +[-0.05948111874664, 0.4725017245888], +[-0.05505868555946, 0.4724203821404], +[-0.0506400139214, 0.4723448304323], +[-0.04622481417108, 0.4722751787059], +[-0.04181279395513, 0.472211528194], +[-0.03740365840983, 0.472153971849], +[-0.03299711035671, 0.4721025940916], +[-0.0285928505101, 0.4720574705785], +[-0.02419057769619, 0.4720186679904], +[-0.0197899890825, 0.471986243844], +[-0.01539078041666, 0.4719602463271], +[-0.01099264627321, 0.4719407141596], +[-0.006595280307196, 0.4719276764814], +[-0.002198375512986, 0.4719211527666], +[0.002198375512986, 0.4719211527666], +[0.006595280307196, 0.4719276764814], +[0.01099264627321, 0.4719407141596], +[0.01539078041666, 0.4719602463271], +[0.0197899890825, 0.471986243844], +[0.02419057769619, 0.4720186679904], +[0.0285928505101, 0.4720574705785], +[0.03299711035671, 0.4721025940916], +[0.03740365840983, 0.472153971849], +[0.04181279395513, 0.472211528194], +[0.04622481417108, 0.4722751787059], +[0.05064001392113, 0.4723448304315], +[0.05505868555946, 0.4724203821404], +[0.05948111874664, 0.4725017245888], +[0.06390760028325, 0.4725887408115], +[0.06833841395448, 0.4726813064188], +[0.0727738403905, 0.4727792899089], +[0.07721415694148, 0.4728825529908], +[0.08165963756727, 0.4729909509145], +[0.08611055274201, 0.4731043328083], +[0.09056716937331, 0.473222542021], +[0.09502975073575, 0.4733454164665], +[0.09949855641844, 0.4734727889699], +[0.1039738422861, 0.4736044876135], +[0.108455860453, 0.4737403360813], +[0.1129448592698, 0.4738801539993], +[0.1174410833211, 0.4740237572731], +[0.1219447734354, 0.4741709584188], +[0.1264561667041, 0.4743215668879], +[0.1309754965108, 0.474475389385], +[0.1355029925689, 0.4746322301775], +[0.1400388809675, 0.4747918913961], +[0.1445833842239, 0.4749541733263], +[0.149136721343, 0.4751188746905], +[-0.1464989186258, 0.4796876830171], +[-0.1419592792463, 0.4795162354978], +[-0.1374284975776, 0.4793474692616], +[-0.1329063512478, 0.4791815906314], +[-0.1283926142071, 0.4790188042843], +[-0.1238870566645, 0.4788593129549], +[-0.1193894450313, 0.4787033171278], +[-0.1148995418725, 0.4785510147203], +[-0.1104171058666, 0.4784026007558], +[-0.1059418917757, 0.4782582670282], +[-0.1014736504251, 0.4781182017589], +[-0.09701212869488, 0.4779825892465], +[-0.09255706952344, 0.4778516095114], +[-0.08810821192342, 0.4777254379351], +[-0.08366529101167, 0.4776042448969], +[-0.07922803805319, 0.477488195409], +[-0.07479618051988, 0.4773774487514], +[-0.07036944216445, 0.4772721581084], +[-0.06594754311001, 0.4771724702087], +[-0.06153019995547, 0.4770785249714], +[-0.05711712589701, 0.4769904551589], +[-0.0527080308655, 0.4769083860392], +[-0.04830262167977, 0.4768324350603], +[-0.04390060221561, 0.476762711538], +[-0.03950167358978, 0.4766993163591], +[-0.03510553435868, 0.4766423417026], +[-0.03071188073093, 0.476591870781], +[-0.02632040679278, 0.4765479776021], +[-0.02193080474558, 0.4765107267557], +[-0.01754276515402, 0.4764801732238], +[-0.01315597720378, 0.4764563622184], +[-0.008770128967409, 0.4764393290464], +[-0.004384907676668, 0.4764290990033], +[1.910801472081e-16, 0.4764256872975], +[0.004384907676668, 0.4764290990033], +[0.008770128967409, 0.4764393290464], +[0.01315597720378, 0.4764563622184], +[0.01754276515402, 0.4764801732238], +[0.02193080474558, 0.4765107267557], +[0.02632040679277, 0.4765479776021], +[0.03071188073093, 0.476591870781], +[0.03510553435868, 0.4766423417026], +[0.03950167358978, 0.4766993163591], +[0.04390060221561, 0.476762711538], +[0.04830262167977, 0.4768324350603], +[0.0527080308655, 0.4769083860392], +[0.05711712589701, 0.4769904551589], +[0.06153019995547, 0.4770785249714], +[0.06594754311001, 0.4771724702087], +[0.07036944216445, 0.4772721581084], +[0.07479618051988, 0.4773774487514], +[0.07922803805319, 0.477488195409], +[0.08366529101167, 0.4776042448969], +[0.08810821192342, 0.4777254379351], +[0.09255706952344, 0.4778516095114], +[0.09701212869489, 0.4779825892465], +[0.1014736504251, 0.4781182017589], +[0.1059418917757, 0.4782582670282], +[0.1104171058666, 0.4784026007558], +[0.1148995418725, 0.4785510147203], +[0.1193894450313, 0.4787033171278], +[0.1238870566645, 0.4788593129549], +[0.1283926142071, 0.4790188042843], +[0.1329063512478, 0.4791815906314], +[0.1374284975776, 0.4793474692616], +[0.1419592792463, 0.4795162354978], +[0.1464989186258, 0.4796876830171], +[-0.1438675307961, 0.4842453804325], +[-0.1393417781182, 0.4840672469568], +[-0.1348249075275, 0.4838920630885], +[-0.1303166931907, 0.4837200403967], +[-0.1258169054192, 0.4835513887176], +[-0.121325310602, 0.4833863158423], +[-0.1168416711447, 0.4832250271915], +[-0.1123657454181, 0.4830677254811], +[-0.1078972877164, 0.4829146103763], +[-0.1034360482248, 0.4827658781374], +[-0.09898177300004, 0.4826217212566], +[-0.09453420396221, 0.4824823280879], +[-0.09009307890018, 0.4823478824707], +[-0.0856581314911, 0.4822185633491], +[-0.08122909133453, 0.4820945443875], +[-0.07680568400221, 0.481975993585], +[-0.07238763110389, 0.4818630728903], +[-0.06797465036968, 0.4817559378181], +[-0.06356645574943, 0.4816547370709], +[-0.05916275752932, 0.4815596121657], +[-0.05476326246573, 0.4814706970703], +[-0.05036767393643, 0.48138811785], +[-0.0459756921089, 0.4813119923269], +[-0.0415870141253, 0.4812424297555], +[-0.03720133430373, 0.4811795305147], +[-0.03281834435496, 0.4811233858205], +[-0.02843773361382, 0.4810740774597], +[-0.02405918928421, 0.4810316775485], +[-0.01968239669657, 0.480996248316], +[-0.01530703957642, 0.4809678419154], +[-0.01093280032256, 0.4809465002646], +[-0.006559360293358, 0.4809322549167], +[-0.002186400099374, 0.4809251269619], +[0.002186400099374, 0.4809251269619], +[0.006559360293358, 0.4809322549167], +[0.01093280032256, 0.4809465002646], +[0.01530703957642, 0.4809678419154], +[0.01968239669658, 0.480996248316], +[0.02405918928421, 0.4810316775485], +[0.02843773361382, 0.4810740774597], +[0.03281834435496, 0.4811233858205], +[0.03720133430373, 0.4811795305147], +[0.0415870141253, 0.4812424297555], +[0.0459756921089, 0.4813119923269], +[0.05036767393643, 0.48138811785], +[0.05476326246573, 0.4814706970703], +[0.05916275752932, 0.4815596121657], +[0.06356645574943, 0.4816547370709], +[0.06797465036968, 0.4817559378181], +[0.07238763110389, 0.4818630728903], +[0.07680568400221, 0.481975993585], +[0.08122909133452, 0.4820945443875], +[0.0856581314911, 0.4822185633491], +[0.09009307890018, 0.4823478824707], +[0.0945342039622, 0.4824823280879], +[0.09898177300004, 0.4826217212566], +[0.1034360482248, 0.4827658781374], +[0.1078972877164, 0.4829146103764], +[0.1123657454181, 0.4830677254811], +[0.1168416711447, 0.4832250271915], +[0.121325310602, 0.4833863158423], +[0.1258169054192, 0.4835513887176], +[0.1303166931907, 0.4837200403967], +[0.1348249075275, 0.4838920630885], +[0.1393417781182, 0.4840672469568], +[0.1438675307961, 0.4842453804325], +[-0.1412426974909, 0.4887917246521], +[-0.1367310242912, 0.4886069672955], +[-0.1322282580473, 0.4884254344147], +[-0.127734169497, 0.4882473432295], +[-0.1232485251989, 0.4880729089433], +[-0.118771087594, 0.487902344605], +[-0.1143016149418, 0.4877358607665], +[-0.1098398612657, 0.4875736651278], +[-0.1053855763079, 0.4874159621717], +[-0.1009385054975, 0.4872629527887], +[-0.09649838992963, 0.4871148338926], +[-0.0920649663589, 0.4869717980283], +[-0.08763796720731, 0.4868340329738], +[-0.08321712058725, 0.4867017213365], +[-0.0788021503409, 0.4865750401471], +[-0.07439277609651, 0.4864541604518], +[-0.0699887133422, 0.4863392469052], +[-0.06558967351788, 0.4862304573661], +[-0.06119536412558, 0.4861279424981], +[-0.05680548885849, 0.4860318453776], +[-0.05241974774875, 0.4859423011119], +[-0.04803783733394, 0.4858594364688], +[-0.04365945084192, 0.4857833695217], +[-0.03928427839366, 0.4857142093112], +[-0.03491200722339, 0.4856520555264], +[-0.03054232191515, 0.485596998209], +[-0.02617490465494, 0.4855491174803], +[-0.021809435497, 0.4855084832962], +[-0.0174455926431, 0.4854751552291], +[-0.01308305273317, 0.4854491822813], +[-0.008721491145646, 0.4854306027294], +[-0.004360582305793, 0.485419444002], +[0, 0.4854157225917], +[0.004360582305793, 0.485419444002], +[0.008721491145646, 0.4854306027294], +[0.01308305273317, 0.4854491822813], +[0.0174455926431, 0.4854751552291], +[0.021809435497, 0.4855084832962], +[0.02617490465494, 0.4855491174803], +[0.03054232191515, 0.485596998209], +[0.03491200722339, 0.4856520555264], +[0.03928427839366, 0.4857142093112], +[0.04365945084192, 0.4857833695217], +[0.04803783733394, 0.4858594364688], +[0.05241974774875, 0.4859423011119], +[0.05680548885849, 0.4860318453776], +[0.06119536412558, 0.4861279424981], +[0.06558967351788, 0.4862304573661], +[0.0699887133422, 0.4863392469052], +[0.07439277609651, 0.4864541604518], +[0.07880215034089, 0.4865750401471], +[0.08321712058724, 0.4867017213365], +[0.0876379672073, 0.4868340329738], +[0.09206496635891, 0.4869717980283], +[0.09649838992963, 0.4871148338926], +[0.1009385054975, 0.4872629527887], +[0.1053855763079, 0.4874159621717], +[0.1098398612657, 0.4875736651278], +[0.1143016149418, 0.4877358607665], +[0.118771087594, 0.487902344605], +[0.1232485251989, 0.4880729089433], +[0.127734169497, 0.4882473432295], +[0.1322282580473, 0.4884254344147], +[0.1367310242912, 0.4886069672955], +[0.1412426976259, 0.4887917248447], +[-0.1386243102207, 0.4933259140092], +[-0.134127163911, 0.4931351518513], +[-0.1296386992803, 0.4929473405779], +[-0.1251589344036, 0.492763258757], +[-0.1206876319626, 0.4925831271787], +[-0.1162245503131, 0.4924071643635], +[-0.1117694434168, 0.4922355861994], +[-0.1073220607833, 0.4920686055666], +[-0.1028821474237, 0.4919064319506], +[-0.09844944381638, 0.4917492710442], +[-0.09402368588698, 0.4915973243401], +[-0.08960460500343, 0.4914507887158], +[-0.08519192798636, 0.4913098560107], +[-0.08078537713666, 0.4911747125991], +[-0.07638467028074, 0.4910455389601], +[-0.0719895208342, 0.4909225092455], +[-0.06759963788477, 0.49080579085], +[-0.06321472629489, 0.4906955439837], +[-0.05883448682441, 0.4905919212517], +[-0.05445861627351, 0.4904950672411], +[-0.05008680764603, 0.49040511812], +[-0.04571875033289, 0.4903222012499], +[-0.04135413031538, 0.4902464348147], +[-0.0369926303876, 0.4901779274693], +[-0.0326339303975, 0.4901167780097], +[-0.02827770750529, 0.4900630750683], +[-0.02392363645815, 0.490016896835], +[-0.01957138987997, 0.4899783108094], +[-0.01522063857424, 0.4899473735822], +[-0.01087105183871, 0.4899241306518], +[-0.006522297789655, 0.4899086162744], +[-0.002174043693854, 0.4899008533509], +[0.002174043693854, 0.4899008533509], +[0.006522297789655, 0.4899086162744], +[0.01087105183871, 0.4899241306518], +[0.01522063857424, 0.4899473735822], +[0.01957138987997, 0.4899783108094], +[0.02392363645815, 0.490016896835], +[0.02827770750529, 0.4900630750683], +[0.0326339303975, 0.4901167780097], +[0.0369926303876, 0.4901779274693], +[0.04135413031538, 0.4902464348147], +[0.04571875033289, 0.4903222012499], +[0.05008680764603, 0.49040511812], +[0.05445861627351, 0.4904950672411], +[0.05883448682441, 0.4905919212517], +[0.06321472629489, 0.4906955439837], +[0.06759963788477, 0.49080579085], +[0.07198952083419, 0.4909225092455], +[0.07638467028074, 0.4910455389601], +[0.08078537713667, 0.4911747125991], +[0.08519192798636, 0.4913098560107], +[0.08960460500343, 0.4914507887158], +[0.09402368588698, 0.4915973243401], +[0.09844944381638, 0.4917492710442], +[0.1028821474237, 0.4919064319506], +[0.1073220607833, 0.4920686055666], +[0.1117694434168, 0.4922355861994], +[0.1162245503131, 0.4924071643635], +[0.1206876319626, 0.4925831271787], +[0.1251589344036, 0.492763258757], +[0.1296386992803, 0.4929473405779], +[0.134127163911, 0.4931351518513], +[0.1386243121472, 0.4933259156208], +[-0.1360128908714, 0.4978488999987], +[-0.1315303459513, 0.4976515514991], +[-0.1270563844308, 0.4974575345124], +[-0.1225911454455, 0.4972675422793], +[-0.1181343876663, 0.4970818014092], +[-0.1136858652154, 0.4969005361199], +[-0.1092453275928, 0.4967239678527], +[-0.1048125196157, 0.4965523148752], +[-0.1003871813692, 0.4963857918699], +[-0.09596904817166, 0.4962246095127], +[-0.09155785055513, 0.4960689740406], +[-0.08715331426182, 0.4959190868101], +[-0.08275516025832, 0.4957751438497], +[-0.07836310476808, 0.4956373354066], +[-0.07397685932341, 0.4955058454899], +[-0.06959613083769, 0.4953808514144], +[-0.06522062169854, 0.4952625233441], +[-0.06085002988245, 0.4951510238422], +[-0.05648404909134, 0.495046507426], +[-0.05212236891104, 0.4949491201333], +[-0.04776467499189, 0.4948589991002], +[-0.04341064925109, 0.494776272156], +[-0.03905997009632, 0.4947010574358], +[-0.03471231267004, 0.4946334630152], +[-0.03036734911339, 0.4945735865693], +[-0.02602474884871, 0.4945215150599], +[-0.02168417887905, 0.4944773244515], +[-0.01734530410339, 0.4944410794605], +[-0.01300778764535, 0.4944128333392], +[-0.008671291193802, 0.4943926276955], +[-0.004335475353004, 0.4943804923516], +[0, 0.494376445242], +[0.004335475353004, 0.4943804923516], +[0.008671291193802, 0.4943926276955], +[0.01300778764535, 0.4944128333392], +[0.01734530410339, 0.4944410794605], +[0.02168417887905, 0.4944773244515], +[0.02602474884871, 0.4945215150599], +[0.03036734911339, 0.4945735865693], +[0.03471231267004, 0.4946334630152], +[0.03905997009632, 0.4947010574358], +[0.04341064925109, 0.494776272156], +[0.04776467499189, 0.4948589991002], +[0.05212236891104, 0.4949491201333], +[0.05648404909134, 0.495046507426], +[0.06085002988246, 0.4951510238422], +[0.06522062169854, 0.4952625233441], +[0.06959613083769, 0.4953808514144], +[0.07397685932341, 0.4955058454899], +[0.07836310476808, 0.4956373354066], +[0.08275516025832, 0.4957751438497], +[0.08715331426182, 0.4959190868101], +[0.09155785055513, 0.4960689740406], +[0.09596904817166, 0.4962246095127], +[0.1003871813692, 0.4963857918699], +[0.1048125196157, 0.4965523148752], +[0.1092453275928, 0.4967239678527], +[0.1136858652154, 0.4969005361199], +[0.1181343876663, 0.4970818014092], +[0.1225911454455, 0.4972675422793], +[0.1270563844308, 0.4974575345124], +[0.1315303459513, 0.4976515514991], +[0.1360128908897, 0.497848900013], +[-0.1334088151943, 0.5023595474696], +[-0.128940722357, 0.5021559124311], +[-0.1244814699211, 0.5019557645332], +[-0.1200309636272, 0.5017599445593], +[-0.1155889579914, 0.501568685185], +[-0.1111552027412, 0.5013822165644], +[-0.1067294427385, 0.5012007659222], +[-0.1023114179141, 0.5010245571315], +[-0.09790086321758, 0.5008538102773], +[-0.0934975085809, 0.5006887412087], +[-0.08910107890005, 0.5005295610793], +[-0.08471129403384, 0.5003764758781], +[-0.08032786882207, 0.5002296859542], +[-0.07595051312392, 0.500089385535], +[-0.07157893187773, 0.4999557622425], +[-0.0672128251828, 0.499828996608], +[-0.0628518884042, 0.4997092615904], +[-0.05849581230102, 0.4995967220989], +[-0.05414428317839, 0.4994915345241], +[-0.04979698306348, 0.4993938462808], +[-0.0454535899053, 0.4993037953648], +[-0.04111377779814, 0.4992215099285], +[-0.03677721722777, 0.499147107877], +[-0.03244357533981, 0.4990806964886], +[-0.02811251622905, 0.4990223720634], +[-0.0237837012483, 0.4989722196019], +[-0.01945678933518, 0.4989303125171], +[-0.01513143735509, 0.4988967123829], +[-0.01080730045812, 0.4988714687202], +[-0.006484032447668, 0.4988546188237], +[-0.002161286158513, 0.4988461876301], +[0.002161286158512, 0.4988461876301], +[0.006484032447668, 0.4988546188237], +[0.01080730045812, 0.4988714687202], +[0.01513143735509, 0.4988967123829], +[0.01945678933518, 0.4989303125171], +[0.0237837012483, 0.4989722196019], +[0.02811251622906, 0.4990223720634], +[0.03244357533981, 0.4990806964886], +[0.03677721722777, 0.499147107877], +[0.04111377779814, 0.4992215099285], +[0.04545358990531, 0.4993037953648], +[0.04979698306348, 0.4993938462808], +[0.05414428317839, 0.4994915345241], +[0.05849581230102, 0.4995967220989], +[0.0628518884042, 0.4997092615904], +[0.0672128251828, 0.499828996608], +[0.07157893187773, 0.4999557622425], +[0.07595051312393, 0.500089385535], +[0.08032786882207, 0.5002296859542], +[0.08471129403384, 0.5003764758781], +[0.08910107890005, 0.5005295610793], +[0.0934975085809, 0.5006887412087], +[0.09790086321758, 0.5008538102773], +[0.1023114179141, 0.5010245571315], +[0.1067294427385, 0.5012007659222], +[0.1111552027412, 0.5013822165644], +[0.1155889579914, 0.501568685185], +[0.1200309636272, 0.5017599445593], +[0.1244814699211, 0.5019557645332], +[0.128940722357, 0.5021559124311], +[0.1334088152021, 0.5023595474758], +[-0.1308117937451, 0.5068579179513], +[-0.1263584481957, 0.5066479759227], +[-0.1219141155584, 0.5064417741062], +[-0.1174785536059, 0.5062402115995], +[-0.1130515125433, 0.5060435274061], +[-0.1086327375302, 0.5058519578698], +[-0.1042219685985, 0.5056657362421], +[-0.09981894058375, 0.5054850922327], +[-0.09542338307265, 0.5053102515459], +[-0.09103502036637, 0.5051414354036], +[-0.08665357146296, 0.5049788600566], +[-0.08227875005922, 0.5048227362861], +[-0.07791026457367, 0.5046732688973], +[-0.07354781819169, 0.5045306562078], +[-0.06919110893414, 0.5043950895334], +[-0.06483982975025, 0.5042667526735], +[-0.06049366863547, 0.5041458214004], +[-0.05615230877509, 0.504032462954], +[-0.05181542871369, 0.503926835547], +[-0.04748270255065, 0.5038290878826], +[-0.04315380016155, 0.5037393586897], +[-0.03882838744489, 0.503657776278], +[-0.0345061265935, 0.5035844581171], +[-0.03018667638954, 0.5035195104433], +[-0.02586969252178, 0.5034630278969], +[-0.02155482792348, 0.5034150931941], +[-0.01724173312908, 0.5033757768361], +[-0.01293005664743, 0.5033451368571], +[-0.008619445349328, 0.5033232186156], +[-0.004309544866576, 0.50331005463], +[-1.592334560068e-16, 0.5033056644589], +[0.004309544866576, 0.50331005463], +[0.008619445349328, 0.5033232186156], +[0.01293005664743, 0.5033451368571], +[0.01724173312907, 0.5033757768361], +[0.02155482792348, 0.5034150931941], +[0.02586969252178, 0.5034630278969], +[0.03018667638954, 0.5035195104433], +[0.0345061265935, 0.5035844581171], +[0.03882838744489, 0.503657776278], +[0.04315380016155, 0.5037393586897], +[0.04748270255065, 0.5038290878826], +[0.05181542871369, 0.503926835547], +[0.05615230877509, 0.504032462954], +[0.06049366863547, 0.5041458214004], +[0.06483982975025, 0.5042667526735], +[0.06919110893414, 0.5043950895334], +[0.07354781819169, 0.5045306562078], +[0.07791026457367, 0.5046732688973], +[0.08227875005922, 0.5048227362861], +[0.08665357146296, 0.5049788600566], +[0.09103502036637, 0.5051414354036], +[0.09542338307265, 0.5053102515459], +[0.09981894058375, 0.5054850922327], +[0.1042219685985, 0.5056657362421], +[0.1086327375302, 0.5058519578698], +[0.1130515125433, 0.5060435274061], +[0.1174785536059, 0.5062402115995], +[0.1219141155584, 0.5064417741062], +[0.1263584481957, 0.5066479759227], +[0.1308117937462, 0.5068579179521], +[-0.1282220071659, 0.5113437120071], +[-0.1237836818201, 0.5111274780837], +[-0.1193544847137, 0.5109153016052], +[-0.1149340838868, 0.5107080844053], +[-0.1105222250646, 0.5105060720936], +[-0.1061186486509, 0.5103095074732], +[-0.1017230896404, 0.51011863008], +[-0.09733527754726, 0.509933675705], +[-0.0929549363494, 0.5097548759003], +[-0.08858178445248, 0.5095824574708], +[-0.08421553467341, 0.5094166419542], +[-0.07985589424576, 0.5092576450893], +[-0.07550256484843, 0.5091056762773], +[-0.07115524265865, 0.5089609380373], +[-0.06681361843073, 0.5088236254592], +[-0.06247737760143, 0.5086939256576], +[-0.05814620042278, 0.5085720172296], +[-0.05381976212287, 0.50845806972], +[-0.04949773309497, 0.5083522430982], +[-0.04517977911491, 0.5082546872507], +[-0.04086556158652, 0.508165541492], +[-0.03655473781439, 0.5080849340992], +[-0.03224696130326, 0.508012981874], +[-0.02794188208242, 0.507949789735], +[-0.02363914705392, 0.5078954503452], +[-0.0193384003624, 0.5078500437774], +[-0.01503928378444, 0.5078136372212], +[-0.01074143713494, 0.507786284734], +[-0.006444498687837, 0.5077680270383], +[-0.002148105608078, 0.5077588913688], +[0.002148105608078, 0.5077588913688], +[0.006444498687837, 0.5077680270383], +[0.01074143713494, 0.507786284734], +[0.01503928378444, 0.5078136372212], +[0.0193384003624, 0.5078500437774], +[0.02363914705392, 0.5078954503452], +[0.02794188208242, 0.507949789735], +[0.03224696130326, 0.508012981874], +[0.03655473781439, 0.5080849340992], +[0.04086556158652, 0.508165541492], +[0.04517977911491, 0.5082546872507], +[0.04949773309497, 0.5083522430982], +[0.05381976212287, 0.50845806972], +[0.05814620042278, 0.5085720172296], +[0.06247737760143, 0.5086939256576], +[0.06681361843073, 0.5088236254592], +[0.07115524265865, 0.5089609380373], +[0.07550256484843, 0.5091056762773], +[0.07985589424576, 0.5092576450893], +[0.08421553467341, 0.5094166419542], +[0.08858178445248, 0.5095824574708], +[0.0929549363494, 0.5097548759003], +[0.09733527754726, 0.509933675705], +[0.1017230896404, 0.51011863008], +[0.1061186486509, 0.5103095074732], +[0.1105222250646, 0.5105060720936], +[0.1149340838868, 0.5107080844053], +[0.1193544847137, 0.5109153016052], +[0.1237836818201, 0.5111274780837], +[0.1282220071628, 0.5113437120045], +[-0.1256392142422, 0.5158167026294], +[-0.1212165850404, 0.5155941495927], +[-0.116802744512, 0.5153760800514], +[-0.1123977270317, 0.5151632987326], +[-0.1080012736618, 0.5149560581478], +[-0.1036131198467, 0.5147546078454], +[-0.09923299531991, 0.5145591939198], +[-0.09486062402838, 0.5143700585021], +[-0.09049572407557, 0.5141874392337], +[-0.08613800768485, 0.5140115687241], +[-0.08178718118526, 0.5138426739958], +[-0.07744294502119, 0.5136809759179], +[-0.07310499378757, 0.5135266886314], +[-0.06877301629202, 0.5133800189693], +[-0.06444669564521, 0.5132411658742], +[-0.06012570938044, 0.5131103198174], +[-0.05580972960335, 0.5129876622237], +[-0.05149842317219, 0.5128733649048], +[-0.04719145190897, 0.5127675895062], +[-0.0428884728414, 0.512670486972], +[-0.03858913847521, 0.5125821970315], +[-0.03429309709598, 0.5125028477128], +[-0.02999999309944, 0.5124325548861], +[-0.02570946734868, 0.5123714218429], +[-0.02142115755633, 0.5123195389139], +[-0.01713469868956, 0.5122769831291], +[-0.01284972339524, 0.5122438179248], +[-0.008565862442436, 0.5122200928985], +[-0.004282745179182, 0.5122058436169], +[0, 0.5122010914759], +[0.004282745179182, 0.5122058436169], +[0.008565862442436, 0.5122200928985], +[0.01284972339524, 0.5122438179248], +[0.01713469868956, 0.5122769831291], +[0.02142115755633, 0.5123195389139], +[0.02570946734868, 0.5123714218429], +[0.02999999309944, 0.5124325548861], +[0.03429309709598, 0.5125028477128], +[0.03858913847521, 0.5125821970315], +[0.0428884728414, 0.512670486972], +[0.04719145190897, 0.5127675895062], +[0.05149842317219, 0.5128733649048], +[0.05580972960335, 0.5129876622237], +[0.06012570938044, 0.5131103198174], +[0.06444669564521, 0.5132411658742], +[0.06877301629202, 0.5133800189693], +[0.07310499378757, 0.5135266886314], +[0.07744294502119, 0.5136809759179], +[0.08178718118526, 0.5138426739958], +[0.08613800768485, 0.5140115687241], +[0.09049572407557, 0.5141874392337], +[0.09486062402838, 0.5143700585021], +[0.09923299531991, 0.5145591939198], +[0.1036131198467, 0.5147546078454], +[0.1080012736618, 0.5149560581478], +[0.1123977270317, 0.5151632987326], +[0.116802744512, 0.5153760800514], +[0.1212165850404, 0.5155941495927], +[0.1256392142595, 0.5158167026444], +[-0.1230644904321, 0.520276323354], +[-0.1186573233085, 0.5200477154152], +[-0.1142590660364, 0.5198238368377], +[-0.1098696598827, 0.5196055848197], +[-0.1054888410492, 0.5193932190898], +[-0.1011163398001, 0.5191869962457], +[-0.09675188036427, 0.5189871692314], +[-0.09239518085589, 0.5187939867928], +[-0.0880459532153, 0.5186076929158], +[-0.08370390317288, 0.5184285262475], +[-0.07936873023745, 0.5182567195031], +[-0.07504012771103, 0.5180924988612], +[-0.0707177827318, 0.5179360833505], +[-0.06640137634671, 0.5177876842307], +[-0.06209058361511, 0.5176475043727], +[-0.0577850737446, 0.5175157376401], +[-0.05348451025982, 0.5173925682781], +[-0.0491885512047, 0.5172781703127], +[-0.0448968493785, 0.5171727069661], +[-0.04060905260525, 0.5170763300925], +[-0.03632480403608, 0.5169891796389], +[-0.03204374248353, 0.5169113831365], +[-0.0277655027863, 0.5168430552265], +[-0.02348971620261, 0.5167842972258], +[-0.01921601083002, 0.5167351967359], +[-0.01494401204907, 0.5166958273001], +[-0.01067334298765, 0.5166662481119], +[-0.006403625002896, 0.5166465037774], +[-0.002134478176979, 0.5166366241353], +[0.002134478176979, 0.5166366241353], +[0.006403625002895, 0.5166465037774], +[0.01067334298765, 0.5166662481119], +[0.01494401204907, 0.5166958273001], +[0.01921601083002, 0.5167351967359], +[0.02348971620261, 0.5167842972258], +[0.0277655027863, 0.5168430552265], +[0.03204374248353, 0.5169113831365], +[0.03632480403608, 0.5169891796389], +[0.04060905260524, 0.5170763300925], +[0.0448968493785, 0.5171727069661], +[0.0491885512047, 0.5172781703127], +[0.05348451025982, 0.5173925682781], +[0.0577850737446, 0.5175157376401], +[0.06209058361511, 0.5176475043727], +[0.06640137634671, 0.5177876842307], +[0.0707177827318, 0.5179360833505], +[0.07504012771103, 0.5180924988612], +[0.07936873023745, 0.5182567195031], +[0.08370390317288, 0.5184285262475], +[0.08804595321531, 0.5186076929158], +[0.0923951808559, 0.5187939867928], +[0.09675188036426, 0.5189871692314], +[0.1011163398001, 0.5191869962457], +[0.1054888410492, 0.5193932190898], +[0.1098696598827, 0.5196055848198], +[0.1142590660364, 0.5198238368377], +[0.1186573233086, 0.5200477154152], +[0.1230644904446, 0.5202763233652], +[-0.120497650628, 0.5247232002503], +[-0.1161060659157, 0.5244878945018], +[-0.1117236245458, 0.5242582934337], +[-0.1073500638022, 0.5240346671015], +[-0.1029851148104, 0.5238172827867], +[-0.09862850241545, 0.5236064044609], +[-0.09427994507795, 0.5234022922266], +[-0.08993915479045, 0.523205201736], +[-0.08560583701712, 0.5230153835898], +[-0.08127969065823, 0.5228330827181], +[-0.07696040804186, 0.5226585377466], +[-0.07264767494476, 0.5224919803495], +[-0.06834117064431, 0.5223336345941], +[-0.06404056800325, 0.5221837162805], +[-0.05974553358861, 0.5220424322796], +[-0.0554557278259, 0.5219099798746], +[-0.05117080518965, 0.5217865461116], +[-0.04689041443056, 0.521672307162], +[-0.04261419883942, 0.5215674277043], +[-0.03834179654753, 0.5214720603292], +[-0.03407284086267, 0.5213863449739], +[-0.02980696063955, 0.5213104083908], +[-0.02554378068285, 0.5212443636554], +[-0.02128292218077, 0.5211883097193], +[-0.01702400316636, 0.521142331012], +[-0.01276663900356, 0.5211064970964], +[-0.00851044289458, 0.5210808623815], +[-0.00425502640461, 0.5210654658951], +[-1.910801472081e-16, 0.5210603311201], +[0.00425502640461, 0.5210654658951], +[0.00851044289458, 0.5210808623815], +[0.01276663900357, 0.5211064970964], +[0.01702400316636, 0.521142331012], +[0.02128292218077, 0.5211883097193], +[0.02554378068285, 0.5212443636554], +[0.02980696063955, 0.5213104083908], +[0.03407284086267, 0.5213863449739], +[0.03834179654753, 0.5214720603292], +[0.04261419883943, 0.5215674277043], +[0.04689041443056, 0.521672307162], +[0.05117080518965, 0.5217865461116], +[0.0554557278259, 0.5219099798746], +[0.05974553358861, 0.5220424322796], +[0.06404056800326, 0.5221837162805], +[0.06834117064431, 0.5223336345941], +[0.07264767494476, 0.5224919803495], +[0.07696040804187, 0.5226585377467], +[0.08127969065823, 0.5228330827181], +[0.08560583701712, 0.5230153835898], +[0.08993915479045, 0.523205201736], +[0.09427994507797, 0.5234022922266], +[0.09862850241547, 0.5236064044609], +[0.1029851148104, 0.5238172827867], +[0.1073500638022, 0.5240346671015], +[0.1117236245458, 0.5242582934337], +[0.1161060659157, 0.5244878945018], +[0.120497650628, 0.5247232002503], +[-0.1179385520736, 0.5291556889682], +[-0.1135629862029, 0.5289143994662], +[-0.1091965997093, 0.5286791650707], +[-0.1048391249291, 0.5284502639041], +[-0.1004902876788, 0.5282279711596], +[-0.09614980712422, 0.5280125585283], +[-0.09181739567084, 0.5278042936004], +[-0.0874927588763, 0.5276034392438], +[-0.08317559538853, 0.52741025296], +[-0.07886559691151, 0.5272249862213], +[-0.07456244820105, 0.5270478837913], +[-0.07026582709298, 0.5268791830332], +[-0.06597540456565, 0.5267191132076], +[-0.06169084483855, 0.5265678947673], +[-0.05741180550871, 0.5264257386497], +[-0.05313793772597, 0.5262928455759], +[-0.04886888640811, 0.5261694053586], +[-0.04460429049611, 0.5260555962263], +[-0.04034378324963, 0.525951584169], +[-0.03608699258212, 0.5258575223111], +[-0.03183354143457, 0.5257735503181], +[-0.02758304818624, 0.5256997938421], +[-0.02333512710038, 0.5256363640126], +[-0.01908938880224, 0.5255833569773], +[-0.01484544078622, 0.525540853499], +[-0.01060288794865, 0.5255089186111], +[-0.006361333142024, 0.5254876013382], +[-0.002120377746446, 0.5254769344831], +[0.002120377746446, 0.5254769344831], +[0.006361333142024, 0.5254876013383], +[0.01060288794865, 0.5255089186111], +[0.01484544078622, 0.525540853499], +[0.01908938880224, 0.5255833569773], +[0.02333512710038, 0.5256363640126], +[0.02758304818624, 0.5256997938421], +[0.03183354143457, 0.5257735503181], +[0.03608699258212, 0.5258575223111], +[0.04034378324963, 0.525951584169], +[0.04460429049611, 0.5260555962263], +[0.04886888640811, 0.5261694053586], +[0.05313793772597, 0.5262928455759], +[0.05741180550871, 0.5264257386497], +[0.06169084483856, 0.5265678947673], +[0.06597540456565, 0.5267191132076], +[0.07026582709298, 0.5268791830332], +[0.07456244820105, 0.5270478837913], +[0.07886559691152, 0.5272249862213], +[0.08317559538855, 0.52741025296], +[0.08749275887631, 0.5276034392438], +[0.09181739567084, 0.5278042936004], +[0.09614980712421, 0.5280125585283], +[0.1004902876788, 0.5282279711597], +[0.1048391249291, 0.5284502639041], +[0.1091965997093, 0.5286791650707], +[0.1135629862029, 0.5289143994662], +[0.1179385520736, 0.5291556889682], +[-0.1153875650847, 0.5335741280423], +[-0.1110282617873, 0.5333269362409], +[-0.1066781758565, 0.5330861604054], +[-0.1023370344562, 0.5328520871196], +[-0.09800455784002, 0.5326249998715], +[-0.09368045921233, 0.5324051784404], +[-0.08936444461185, 0.5321928982556], +[-0.08505621282044, 0.5319884297294], +[-0.08075545529996, 0.5317920375672], +[-0.07646185615992, 0.5316039800563], +[-0.07217509215832, 0.531424508337], +[-0.06789483273849, 0.5312538656614], +[-0.06362074010382, 0.531092286641], +[-0.05935246933248, 0.5309399964917], +[-0.0550896685338, 0.530797210278], +[-0.05083197904764, 0.5306641321646], +[-0.04657903568739, 0.5305409546802], +[-0.04233046702708, 0.5304278579992], +[-0.0380858957325, 0.5303250092502], +[-0.03384493893532, 0.5302325618547], +[-0.02960720864913, 0.5301506549053], +[-0.02537231222521, 0.5300794125882], +[-0.02113985284579, 0.530018943657], +[-0.01690943005128, 0.5299693409634], +[-0.01268064029807, 0.5299306810501], +[-0.008453077542529, 0.5299030238108], +[-0.004226333846615, 0.5298864122219], +[0, 0.5298808721474], +[0.004226333846615, 0.5298864122219], +[0.008453077542529, 0.5299030238108], +[0.01268064029807, 0.5299306810501], +[0.01690943005128, 0.5299693409634], +[0.02113985284579, 0.530018943657], +[0.02537231222521, 0.5300794125882], +[0.02960720864913, 0.5301506549053], +[0.03384493893533, 0.5302325618547], +[0.0380858957325, 0.5303250092502], +[0.04233046702708, 0.5304278579992], +[0.04657903568739, 0.5305409546802], +[0.05083197904763, 0.5306641321646], +[0.05508966853379, 0.530797210278], +[0.05935246933248, 0.5309399964917], +[0.06362074010383, 0.531092286641], +[0.0678948327385, 0.5312538656614], +[0.07217509215831, 0.531424508337], +[0.07646185615991, 0.5316039800562], +[0.08075545529997, 0.5317920375672], +[0.08505621282044, 0.5319884297294], +[0.08936444461185, 0.5321928982556], +[0.09368045921232, 0.5324051784404], +[0.09800455784002, 0.5326249998715], +[0.1023370344562, 0.5328520871196], +[0.1066781758565, 0.5330861604054], +[0.1110282617873, 0.5333269362409], +[0.1153875650847, 0.5335741280423], +[-0.112844864851, 0.5379782140356], +[-0.1085020748046, 0.5377252037084], +[-0.1041685422476, 0.53747898116], +[-0.09984398892666, 0.5372398418573], +[-0.0955281292569, 0.5370080779937], +[-0.09122067017391, 0.5367839778308], +[-0.08692131101051, 0.5365678250111], +[-0.08262974340168, 0.5363598978416], +[-0.07834565122063, 0.5361604685528], +[-0.07406871054893, 0.5359698025347], +[-0.0697985896837, 0.5357881575543], +[-0.06553494918454, 0.5356157829593], +[-0.06127744196256, 0.5354529188717], +[-0.05702571341364, 0.5352997953785], +[-0.05277940159783, 0.535156631723], +[-0.04853813746606, 0.5350236355056], +[-0.04430154513497, 0.5349010018993], +[-0.04006924221019, 0.534788912888], +[-0.03584084015742, 0.5346875365328], +[-0.03161594472079, 0.5345970262774], +[-0.02739415638608, 0.5345175202958], +[-0.02317507088708, 0.534449140892], +[-0.01895827975153, 0.5343919939584], +[-0.01474337088309, 0.5343461684974], +[-0.01052992917493, 0.534311736214], +[-0.006317537150098, 0.5342887511837], +[-0.00210577562307, 0.5342772495989], +[0.00210577562307, 0.534277249599], +[0.006317537150098, 0.5342887511837], +[0.01052992917493, 0.534311736214], +[0.01474337088309, 0.5343461684974], +[0.01895827975153, 0.5343919939584], +[0.02317507088707, 0.534449140892], +[0.02739415638607, 0.5345175202957], +[0.03161594472079, 0.5345970262774], +[0.03584084015742, 0.5346875365328], +[0.04006924221018, 0.5347889128879], +[0.04430154513497, 0.5349010018993], +[0.04853813746607, 0.5350236355056], +[0.05277940159783, 0.535156631723], +[0.05702571341363, 0.5352997953785], +[0.06127744196256, 0.5354529188717], +[0.06553494918456, 0.5356157829593], +[0.0697985896837, 0.5357881575543], +[0.07406871054892, 0.5359698025347], +[0.07834565122063, 0.5361604685528], +[0.08262974340169, 0.5363598978416], +[0.08692131101051, 0.5365678250111], +[0.09122067017391, 0.5367839778308], +[0.0955281292569, 0.5370080779937], +[0.09984398892666, 0.5372398418573], +[0.1041685422476, 0.53747898116], +[0.1085020748046, 0.5377252037084], +[0.112844864851, 0.5379782140356], +[-0.1103104313888, 0.5423670233466], +[-0.1059846121696, 0.542108893306], +[-0.1016678933631, 0.5418573217361], +[-0.09736019055459, 0.5416132260716], +[-0.09306121202048, 0.5413769076503], +[-0.08877065809287, 0.5411486636384], +[-0.08448822102911, 0.5409287862911], +[-0.08021358491287, 0.540717562183], +[-0.07594642558986, 0.5405152714105], +[-0.07168641064138, 0.5403221867698], +[-0.06743319939911, 0.5401385729157], +[-0.06318644300398, 0.5399646855054], +[-0.05894578451183, 0.5398007703325], +[-0.05471085904813, 0.5396470624581], +[-0.05048129401377, 0.5395037853456], +[-0.04625670934305, 0.5393711500062], +[-0.04203671781472, 0.5392493541627], +[-0.03782092541614, 0.5391385814398], +[-0.03360893175995, 0.5390390005889], +[-0.02940033055173, 0.5389507647559], +[-0.02519471010674, 0.5388740107997], +[-0.02099165391235, 0.5388088586692], +[-0.01679074123298, 0.5387554108467], +[-0.01259154775259, 0.5387137518643], +[-0.00839364624996, 0.5386839478994], +[-0.004196607300702, 0.5386660464542], +[2.229268384095e-16, 0.5386600761233], +[0.0041966073007, 0.5386660464542], +[0.008393646249959, 0.5386839478994], +[0.01259154775259, 0.5387137518643], +[0.01679074123298, 0.5387554108466], +[0.02099165391235, 0.5388088586691], +[0.02519471010674, 0.5388740107997], +[0.02940033055174, 0.5389507647559], +[0.03360893175995, 0.5390390005889], +[0.03782092541614, 0.5391385814398], +[0.04203671781472, 0.5392493541627], +[0.04625670934305, 0.5393711500062], +[0.05048129401378, 0.5395037853456], +[0.05471085904813, 0.5396470624581], +[0.05894578451183, 0.5398007703325], +[0.06318644300398, 0.5399646855054], +[0.06743319939911, 0.5401385729157], +[0.07168641064138, 0.5403221867698], +[0.07594642558986, 0.5405152714105], +[0.08021358491287, 0.540717562183], +[0.08448822102911, 0.5409287862911], +[0.08877065809287, 0.5411486636384], +[0.09306121202048, 0.5413769076503], +[0.09736019055459, 0.5416132260716], +[0.1016678933631, 0.5418573217361], +[0.1059846121696, 0.542108893306], +[0.1103104228165, 0.5423669872625], +[-0.1077849576091, 0.5467414034471], +[-0.1034760658566, 0.5464776886014], +[-0.09917642921681, 0.5462208688013], +[-0.09488584757068, 0.545971930162], +[-0.09060402272911, 0.5457311836373], +[-0.08633064805546, 0.5454989357494], +[-0.08206540832854, 0.5452754877944], +[-0.07780797963937, 0.5450611350115], +[-0.07355802932725, 0.5448561657245], +[-0.06931521595776, 0.5446608604564], +[-0.06507918934673, 0.5444754910228], +[-0.06084959063317, 0.5443003196102], +[-0.0566260524043, 0.544135597845], +[-0.05240819887512, 0.5439815658598], +[-0.04819564612441, 0.5438384513664], +[-0.04398800238856, 0.5437064687411], +[-0.03978486841391, 0.5435858181334], +[-0.03558583786739, 0.5434766846057], +[-0.03139049780457, 0.5433792373132], +[-0.02719842919323, 0.5432936287336], +[-0.0230092074898, 0.543219993956], +[-0.01882240326496, 0.5431584500359], +[-0.01463758287399, 0.5431090954263], +[-0.01045430916655, 0.5430720094918], +[-0.00627214222976, 0.5430472521106], +[-0.002090640157975, 0.543034863372], +[0.002090640157974, 0.543034863372], +[0.00627214222976, 0.5430472521106], +[0.01045430916655, 0.5430720094919], +[0.01463758287399, 0.5431090954264], +[0.01882240326496, 0.5431584500359], +[0.0230092074898, 0.543219993956], +[0.02719842919323, 0.5432936287336], +[0.03139049780457, 0.5433792373132], +[0.0355858378674, 0.5434766846057], +[0.03978486841391, 0.5435858181334], +[0.04398800238856, 0.5437064687411], +[0.04819564612441, 0.5438384513664], +[0.05240819887512, 0.5439815658598], +[0.0566260524043, 0.544135597845], +[0.06084959063317, 0.5443003196102], +[0.06507918934673, 0.5444754910228], +[0.06931521595776, 0.5446608604564], +[0.07355802932725, 0.5448561657245], +[0.07780797963937, 0.5450611350115], +[0.08206540832854, 0.5452754877944], +[0.08633064805546, 0.5454989357494], +[0.09060402272903, 0.5457311836372], +[0.09488584757068, 0.545971930162], +[0.09917642921681, 0.5462208688013], +[0.1034760658566, 0.5464776886014], +[0.1077849576145, 0.5467414034524], +[-0.1052684319968, 0.551100519657], +[-0.1009766332014, 0.5508312648368], +[-0.09669435569273, 0.5505693008445], +[-0.09242117459561, 0.5503156365448], +[-0.08815678489824, 0.5500705930136], +[-0.08390087259703, 0.5498344866151], +[-0.07965311455152, 0.5496076281424], +[-0.07541317837794, 0.5493903219239], +[-0.07118072238587, 0.549182864895], +[-0.06695539556199, 0.5489855456431], +[-0.06273683760504, 0.5487986434297], +[-0.05852467901541, 0.5486224271965], +[-0.05431854124273, 0.5484571545628], +[-0.05011803689404, 0.5483030708218], +[-0.04592277000467, 0.5481604079452], +[-0.04173233637315, 0.5480293836047], +[-0.03754632396056, 0.5479102002206], +[-0.03336431335409, 0.5478030440479], +[-0.02918587829327, 0.5477080843089], +[-0.02501058625665, 0.5476254723848], +[-0.0208379991054, 0.5475553410736], +[-0.01666767377948, 0.5474978039256], +[-0.012499163041, 0.5474529546651], +[-0.008332016258424, 0.5474208667053], +[-0.004165780224464, 0.5474015927636], +[0, 0.5473951645831], +[0.004165780224463, 0.5474015927636], +[0.008332016258424, 0.5474208667053], +[0.012499163041, 0.5474529546651], +[0.01666767377948, 0.5474978039256], +[0.0208379991054, 0.5475553410736], +[0.02501058625665, 0.5476254723848], +[0.02918587829327, 0.5477080843089], +[0.03336431335409, 0.5478030440479], +[0.03754632396056, 0.5479102002206], +[0.04173233637315, 0.5480293836047], +[0.04592277000467, 0.5481604079452], +[0.05011803689404, 0.5483030708218], +[0.05431854124273, 0.5484571545628], +[0.05852467901541, 0.5486224271965], +[0.06273683760504, 0.5487986434297], +[0.06695539556199, 0.5489855456431], +[0.07118072238587, 0.549182864895], +[0.07541317837794, 0.5493903219239], +[0.07965311455152, 0.5496076281424], +[0.08390087259703, 0.5498344866151], +[0.08815678489824, 0.5500705930136], +[0.09242117459562, 0.5503156365448], +[0.09669435569273, 0.5505693008445], +[0.1009766332014, 0.5508312648368], +[0.105268431991, 0.5511005196513], +[-0.1027608007641, 0.5554440135352], +[-0.09848651722694, 0.555169288438], +[-0.09422188491007, 0.554902287698], +[-0.08996639304433, 0.5546440191925], +[-0.08571972940529, 0.5543948146651], +[-0.08148157218662, 0.5541550008418], +[-0.07725158984692, 0.553924898504], +[-0.07302944099997, 0.5537048215212], +[-0.06881477435295, 0.5534950758487], +[-0.06460722869743, 0.5532959584948], +[-0.06040643295749, 0.5531077564639], +[-0.05621200629892, 0.552930745684], +[-0.05202355830308, 0.5527651899248], +[-0.04784068920827, 0.5526113397177], +[-0.04366299022071, 0.5524694312864], +[-0.03949004389654, 0.5523396854985], +[-0.03532142459497, 0.5522223068506], +[-0.03115669900201, 0.5521174824964], +[-0.02699542672273, 0.5520253813315], +[-0.02283716093916, 0.551946153144], +[-0.01868144912946, 0.5518799278443], +[-0.01452783384315, 0.5518268147823], +[-0.01037585352572, 0.5517869021628], +[-0.006225043385264, 0.5517602565678], +[-0.002074936292818, 0.5517469225908], +[0.002074936292818, 0.5517469225909], +[0.006225043385263, 0.5517602565678], +[0.01037585352572, 0.5517869021628], +[0.01452783384315, 0.5518268147822], +[0.01868144912946, 0.5518799278443], +[0.02283716093915, 0.551946153144], +[0.02699542672273, 0.5520253813315], +[0.03115669900201, 0.5521174824964], +[0.03532142459497, 0.5522223068506], +[0.03949004389654, 0.5523396854985], +[0.04366299022071, 0.5524694312864], +[0.04784068920827, 0.5526113397177], +[0.05202355830308, 0.5527651899248], +[0.05621200629891, 0.552930745684], +[0.06040643295749, 0.5531077564639], +[0.06460722869743, 0.5532959584948], +[0.06881477435295, 0.5534950758487], +[0.07302944099997, 0.5537048215212], +[0.07725158984692, 0.553924898504], +[0.08148157218661, 0.5541550008418], +[0.08571972940529, 0.5543948146651], +[0.08996639304433, 0.5546440191925], +[0.09422188491007, 0.554902287698], +[0.09848651722694, 0.555169288438], +[0.102760800754, 0.555444013525], +[-0.1002617621126, 0.5597716563079], +[-0.09600592699546, 0.5594914164855], +[-0.09175923561765, 0.5592194900225], +[-0.08752173156419, 0.5589567431391], +[-0.08329309497146, 0.5587035188334], +[-0.07907299575336, 0.5584601547537], +[-0.07486109343986, 0.558226982195], +[-0.07065703706409, 0.5580043250524], +[-0.06646046510328, 0.5577924987347], +[-0.06227100547865, 0.5575918090467], +[-0.05808827561938, 0.5574025510453], +[-0.05391188259486, 0.5572250078794], +[-0.0497414233192, 0.5570594496222], +[-0.04557648483102, 0.5569061321065], +[-0.0414166446508, 0.5567652957753], +[-0.03726147121688, 0.556637164558], +[-0.03311052440019, 0.5565219447866], +[-0.02896335609652, 0.556419824164], +[-0.02481951089381, 0.5563309707971], +[-0.02067852681048, 0.5562555323082], +[-0.01653993609975, 0.5561936350364], +[-0.01240326611325, 0.5561453833404], +[-0.008268040216213, 0.5561108590131], +[-0.004133778745425, 0.5560901208163], +[0, 0.5560832041439], +[0.004133778745425, 0.5560901208164], +[0.008268040216213, 0.5561108590131], +[0.01240326611324, 0.5561453833404], +[0.01653993609975, 0.5561936350364], +[0.02067852681048, 0.5562555323082], +[0.02481951089381, 0.5563309707971], +[0.02896335609652, 0.556419824164], +[0.03311052440019, 0.5565219447866], +[0.03726147121688, 0.556637164558], +[0.0414166446508, 0.5567652957753], +[0.04557648483102, 0.5569061321065], +[0.04974142331919, 0.5570594496221], +[0.05391188259486, 0.5572250078794], +[0.05808827561938, 0.5574025510453], +[0.06227100547865, 0.5575918090467], +[0.06646046510328, 0.5577924987347], +[0.07065703706409, 0.5580043250524], +[0.07486109343986, 0.558226982195], +[0.07907299575337, 0.5584601547537], +[0.08329309497147, 0.5587035188334], +[0.08752173156419, 0.5589567431391], +[0.09175923561765, 0.5592194900225], +[0.09600592699547, 0.5594914164855], +[0.1002617621378, 0.5597716563348], +[-0.09777283397979, 0.5640826808331], +[-0.09353507798948, 0.5637972961432], +[-0.0893066336219, 0.5635205587518], +[-0.08508742651089, 0.5632534639457], +[-0.08087712868635, 0.5629963666112], +[-0.07667540125942, 0.562749615922], +[-0.07248189425248, 0.5625135542517], +[-0.06829624648355, 0.5622885160383], +[-0.06411808551106, 0.5620748266056], +[-0.05994702764491, 0.561872800951], +[-0.05578267802929, 0.5616827425049], +[-0.05162463080214, 0.5615049418751], +[-0.04747246933541, 0.5613396755831], +[-0.04332576655953, 0.5611872048086], +[-0.03918408537417, 0.5610477741512], +[-0.03504697914648, 0.5609216104258], +[-0.03091399229631, 0.5608089215058], +[-0.02678466096674, 0.5607098952267], +[-0.02265851377654, 0.5606246983677], +[-0.01853507264964, 0.5605534757234], +[-0.01441385371517, 0.560496349279], +[-0.01029436827016, 0.5604534175032], +[-0.006176123795534, 0.5604247547679], +[-0.002058625014967, 0.5604104109046], +[0.002058625014967, 0.5604104109046], +[0.006176123795535, 0.5604247547679], +[0.01029436827016, 0.5604534175032], +[0.01441385371517, 0.560496349279], +[0.01853507264964, 0.5605534757234], +[0.02265851377654, 0.5606246983677], +[0.02678466096674, 0.5607098952267], +[0.03091399229631, 0.5608089215058], +[0.03504697914648, 0.5609216104258], +[0.03918408537417, 0.5610477741512], +[0.04332576655953, 0.5611872048086], +[0.04747246933541, 0.5613396755831], +[0.05162463080214, 0.5615049418751], +[0.05578267802929, 0.5616827425049], +[0.05994702764491, 0.561872800951], +[0.06411808551107, 0.5620748266057], +[0.06829624648355, 0.5622885160383], +[0.07248189425248, 0.5625135542517], +[0.07667540125943, 0.562749615922], +[0.08087712868637, 0.5629963666112], +[0.08508742651088, 0.5632534639457], +[0.08930663362188, 0.5635205587518], +[0.09353507798949, 0.5637972961432], +[0.09777283399795, 0.5640826808528], +[-0.09529355208019, 0.5683770544631], +[-0.09107419252473, 0.5680865640414], +[-0.08686431225155, 0.5678051344931], +[-0.08266372246606, 0.567533827126], +[-0.07847208657906, 0.567273009399], +[-0.07428905632458, 0.5670230426618], +[-0.07011427158126, 0.5667842809743], +[-0.06594736025457, 0.5665570698712], +[-0.0617879382269, 0.5663417450826], +[-0.05763560938231, 0.5661386312148], +[-0.05348996571202, 0.565948040405], +[-0.0493505875058, 0.565770270958], +[-0.04521704363416, 0.5656056059787], +[-0.04108889192458, 0.5654543120149], +[-0.03696567963426, 0.5653166377239], +[-0.03284694401992, 0.5651928125806], +[-0.02873221300396, 0.5650830456411], +[-0.02462100593438, 0.5649875243809], +[-0.02051283443414, 0.5649064136221], +[-0.0164072033338, 0.5648398545668], +[-0.01230361167941, 0.5647879639506], +[-0.008201553806099, 0.5647508333303], +[-0.004100520466302, 0.5647285285169], +[0, 0.5647210891638], +[0.004100520466302, 0.5647285285169], +[0.008201553806099, 0.5647508333303], +[0.01230361167941, 0.5647879639506], +[0.01640720333381, 0.5648398545668], +[0.02051283443414, 0.5649064136221], +[0.02462100593438, 0.5649875243809], +[0.02873221300396, 0.5650830456411], +[0.03284694401993, 0.5651928125806], +[0.03696567963426, 0.5653166377239], +[0.04108889192458, 0.5654543120149], +[0.04521704363416, 0.5656056059787], +[0.04935058750582, 0.565770270958], +[0.05348996571202, 0.565948040405], +[0.05763560938231, 0.5661386312148], +[0.0617879382269, 0.5663417450826], +[0.06594736025459, 0.5665570698713], +[0.07011427158125, 0.5667842809742], +[0.07428905632456, 0.5670230426618], +[0.07847208657907, 0.567273009399], +[0.08266372246611, 0.5675338271261], +[0.0868643122515, 0.567805134493], +[0.09107419252471, 0.5680865640414], +[0.09529355209115, 0.5683770544752], +[-0.09282416832514, 0.5726550776211], +[-0.08862350019844, 0.5723588456083], +[-0.08443251286326, 0.5720728468782], +[-0.08025087280154, 0.5717974675242], +[-0.07607823424146, 0.5715330883187], +[-0.07191423890845, 0.5712800834907], +[-0.06775851583726, 0.5710388194397], +[-0.06361068125276, 0.5708096533917], +[-0.05947033852731, 0.5705929320043], +[-0.05533707822247, 0.5703889899323], +[-0.05121047822125, 0.5701981483627], +[-0.04709010395744, 0.5700207135346], +[-0.04297550874661, 0.5698569752554], +[-0.03886623422295, 0.5697072054338], +[-0.03476181088361, 0.569571656642], +[-0.03066175874114, 0.5694505607289], +[-0.02656558808262, 0.5693441275007], +[-0.02247280033193, 0.5692525434892], +[-0.01838288900944, 0.5691759708258], +[-0.0142953407814, 0.5691145462378], +[-0.01020963658944, 0.569068380185], +[-0.006125252848366, 0.5690375561504], +[-0.002041662698935, 0.5690221300961], +[0.002041662698935, 0.5690221300961], +[0.006125252848366, 0.5690375561504], +[0.01020963658944, 0.569068380185], +[0.0142953407814, 0.5691145462378], +[0.01838288900944, 0.5691759708258], +[0.02247280033194, 0.5692525434892], +[0.02656558808261, 0.5693441275006], +[0.03066175874114, 0.5694505607289], +[0.03476181088362, 0.569571656642], +[0.03886623422295, 0.5697072054337], +[0.0429755087466, 0.5698569752554], +[0.04709010395745, 0.5700207135346], +[0.05121047822125, 0.5701981483628], +[0.05533707822245, 0.5703889899323], +[0.05947033852729, 0.5705929320043], +[0.06361068125277, 0.5708096533917], +[0.06775851583732, 0.5710388194398], +[0.0719142389085, 0.5712800834908], +[0.07607823424146, 0.5715330883187], +[0.08025087280151, 0.5717974675242], +[0.08443251286322, 0.5720728468781], +[0.08862350019843, 0.5723588456083], +[0.09282416832517, 0.5726550776211], +[-0.09036474168464, 0.57691492952], +[-0.08618323837757, 0.5766137543454], +[-0.08201148539297, 0.5763233138601], +[-0.07784914029513, 0.5760440086426], +[-0.07369584750964, 0.575776233582], +[-0.0695512380573, 0.5755203765466], +[-0.06541492935689, 0.575276816981], +[-0.06128652510542, 0.5750459244386], +[-0.05716561524534, 0.5748280570608], +[-0.05305177602653, 0.5746235600114], +[-0.04894457017098, 0.5744327638806], +[-0.04484354714643, 0.5742559830734], +[-0.04074824355525, 0.5740935142], +[-0.03665818364145, 0.5739456344859], +[-0.03257287991837, 0.5738126002216], +[-0.02849183391646, 0.5736946452731], +[-0.02441453704972, 0.5735919796754], +[-0.02034047159491, 0.5735047883281], +[-0.01626911177705, 0.5734332298164], +[-0.01219992495123, 0.5733774353739], +[-0.008132372869128, 0.5733375080105], +[-0.004065913015617, 0.5733135218134], +[2.229268384095e-16, 0.573305521441], +[0.004065913015619, 0.5733135218135], +[0.008132372869128, 0.5733375080105], +[0.01219992495123, 0.5733774353739], +[0.01626911177705, 0.5734332298163], +[0.02034047159492, 0.5735047883282], +[0.02441453704972, 0.5735919796754], +[0.02849183391644, 0.5736946452731], +[0.03257287991836, 0.5738126002216], +[0.03665818364145, 0.5739456344859], +[0.04074824355522, 0.5740935142], +[0.0448435471464, 0.5742559830733], +[0.04894457017098, 0.5744327638806], +[0.05305177602659, 0.5746235600115], +[0.05716561524533, 0.5748280570608], +[0.06128652510538, 0.5750459244385], +[0.06541492935685, 0.5752768169809], +[0.06955123805736, 0.5755203765467], +[0.07369584750967, 0.5757762335821], +[0.07784914029513, 0.5760440086426], +[0.08201148539295, 0.5763233138601], +[0.08618323837757, 0.5766137543454], +[0.09036474168464, 0.57691492952], +[-0.08791564107491, 0.581156896209], +[-0.08375365272978, 0.5808508910395], +[-0.07960148895769, 0.5805561409504], +[-0.0754587978049, 0.5802730619133], +[-0.0713252132107, 0.5800020638067], +[-0.06720035472298, 0.5797435489619], +[-0.06308382729153, 0.5794979106291], +[-0.05897522114929, 0.5792655313732], +[-0.05487411179189, 0.5790467814103], +[-0.0507800600646, 0.5788420168966], +[-0.04669261236561, 0.5786515781861], +[-0.04261130097247, 0.5784757880739], +[-0.03853564449848, 0.5783149500458], +[-0.03446514848199, 0.5781693465547], +[-0.03039930611091, 0.5780392373477], +[-0.02633759908143, 0.5779248578676], +[-0.02227949858712, 0.5778264177514], +[-0.01822446643293, 0.5777440994539], +[-0.01417195626428, 0.5776780570182], +[-0.0101214148987, 0.5776284150089], +[-0.006072283746808, 0.5775952676399], +[-0.002024000304159, 0.5775786781006], +[0.002024000304162, 0.5775786781008], +[0.006072283746811, 0.57759526764], +[0.01012141489869, 0.5776284150088], +[0.01417195626426, 0.577678057018], +[0.01822446643295, 0.5777440994541], +[0.02227949858708, 0.5778264177511], +[0.0263375990814, 0.5779248578674], +[0.03039930611091, 0.5780392373477], +[0.03446514848202, 0.5781693465548], +[0.03853564449846, 0.5783149500457], +[0.04261130097244, 0.5784757880738], +[0.04669261236559, 0.578651578186], +[0.05078006006462, 0.5788420168966], +[0.05487411179192, 0.5790467814104], +[0.05897522114929, 0.5792655313732], +[0.06308382729151, 0.5794979106291], +[0.06720035472298, 0.5797435489619], +[0.07132521321071, 0.5800020638067], +[0.07545879780491, 0.5802730619133], +[0.07960148895769, 0.5805561409504], +[0.08375365272978, 0.5808508910395], +[0.08791564107491, 0.581156896209], +[-0.08547710701129, 0.5853805611032], +[-0.08133499780425, 0.5850698429061], +[-0.0772027925145, 0.5847709203892], +[-0.07308012900793, 0.5844842259073], +[-0.06896662998225, 0.5842101852777], +[-0.06486190266272, 0.5839492161883], +[-0.06076553858598, 0.5837017265173], +[-0.05667711348398, 0.5834681125754], +[-0.05259618727926, 0.5832487572818], +[-0.04852230420246, 0.5830440282914], +[-0.04445499304154, 0.5828542760877], +[-0.04039376753116, 0.5826798320659], +[-0.03633812688828, 0.5825210066262], +[-0.03228755649799, 0.5823780873039], +[-0.02824152875082, 0.5822513369629], +[-0.02419950402955, 0.5821409920787], +[-0.02016093184108, 0.5820472611418], +[-0.01612525208441, 0.5819703232057], +[-0.0120918964435, 0.5819103266094], +[-0.008060289889519, 0.581867387893], +[-0.004029852275141, 0.5818415909332], +[-6.687805152285e-16, 0.581832986312], +[0.004029852275135, 0.5818415909331], +[0.008060289889516, 0.581867387893], +[0.01209189644351, 0.5819103266095], +[0.01612525208443, 0.5819703232059], +[0.02016093184107, 0.5820472611417], +[0.02419950402953, 0.5821409920786], +[0.02824152875081, 0.5822513369629], +[0.03228755649801, 0.582378087304], +[0.0363381268883, 0.5825210066263], +[0.04039376753115, 0.5826798320659], +[0.04445499304153, 0.5828542760877], +[0.04852230420246, 0.5830440282914], +[0.05259618727928, 0.5832487572819], +[0.05667711348399, 0.5834681125754], +[0.06076553858598, 0.5837017265173], +[0.06486190266272, 0.5839492161883], +[0.06896662998227, 0.5842101852777], +[0.07308012900793, 0.5844842259073], +[0.0772027925145, 0.5847709203892], +[0.08133499780425, 0.5850698429061], +[0.08547710701129, 0.5853805611032], +[-0.08304938850977, 0.5895854928943], +[-0.07892753766673, 0.5892701826542], +[-0.07481567558301, 0.5889672302417], +[-0.0707134292123, 0.5886770854752], +[-0.0666204091746, 0.5884001911458], +[-0.06253620943072, 0.5881369812694], +[-0.05846040705683, 0.5878878792423], +[-0.05439256213305, 0.5876532959096], +[-0.0503322177589, 0.5874336275626], +[-0.04627890020781, 0.5872292538819], +[-0.04223211923185, 0.5870405358493], +[-0.03819136852531, 0.5868678136493], +[-0.03415612635412, 0.5867114045912], +[-0.03012585635477, 0.5865716010783], +[-0.02610000850335, 0.5864486686552], +[-0.02207802025161, 0.5863428441673], +[-0.01805931782324, 0.5862543340624], +[-0.01404331765926, 0.5861833128665], +[-0.01002942799789, 0.5861299218625], +[-0.006017050570184, 0.5860942679994], +[-0.002005582389531, 0.5860764230521], +[0.00200558238953, 0.5860764230521], +[0.006017050570182, 0.5860942679994], +[0.01002942799789, 0.5861299218626], +[0.01404331765926, 0.5861833128665], +[0.01805931782325, 0.5862543340625], +[0.02207802025161, 0.5863428441673], +[0.02610000850335, 0.5864486686552], +[0.03012585635478, 0.5865716010783], +[0.03415612635414, 0.5867114045913], +[0.03819136852532, 0.5868678136493], +[0.04223211923185, 0.5870405358493], +[0.04627890020781, 0.5872292538819], +[0.0503322177589, 0.5874336275626], +[0.05439256213306, 0.5876532959096], +[0.05846040705683, 0.5878878792423], +[0.06253620943072, 0.5881369812694], +[0.06662040917461, 0.5884001911458], +[0.07071342921229, 0.5886770854752], +[0.07481567558301, 0.5889672302417], +[0.07892753766673, 0.5892701826542], +[0.08304938850977, 0.5895854928943], +[-0.08063241846241, 0.5937706358268], +[-0.07653154659584, 0.5934514674659], +[-0.07244042903968, 0.5931446334119], +[-0.0683590062513, 0.5928512108111], +[-0.06428687584557, 0.5925716605582], +[-0.06022361747263, 0.5923064340551], +[-0.05616879258371, 0.5920559711802], +[-0.05212194432707, 0.5918206981617], +[-0.04808259758875, 0.5916010253725], +[-0.04405025919257, 0.5913973450682], +[-0.04002441827102, 0.5912100290935], +[-0.03600454681745, 0.5910394265835], +[-0.03199010042636, 0.5908858616952], +[-0.02798051922532, 0.5907496313988], +[-0.02397522899825, 0.5906310033699], +[-0.01997364249511, 0.5905302140151], +[-0.01597516091861, 0.5904474666707], +[-0.01197917557371, 0.5903829300088], +[-0.007985069661325, 0.5903367366826], +[-0.003992220193004, 0.5903089822415], +[0, 0.5902997243374], +[0.003992220193004, 0.5903089822415], +[0.007985069661325, 0.5903367366826], +[0.01197917557371, 0.5903829300088], +[0.01597516091861, 0.5904474666707], +[0.01997364249512, 0.5905302140151], +[0.02397522899825, 0.5906310033699], +[0.02798051922532, 0.5907496313988], +[0.03199010042636, 0.5908858616952], +[0.03600454681745, 0.5910394265836], +[0.04002441827102, 0.5912100290935], +[0.04405025919257, 0.5913973450682], +[0.04808259758875, 0.5916010253725], +[0.05212194432706, 0.5918206981617], +[0.05616879258371, 0.5920559711802], +[0.06022361747263, 0.5923064340551], +[0.06428687584557, 0.5925716605582], +[0.0683590062513, 0.5928512108111], +[0.07244042903968, 0.5931446334119], +[0.07653154659585, 0.5934514674659], +[0.08063241848515, 0.5937706358538], +[-0.0782275063791, 0.5979366259881], +[-0.0741473098484, 0.5976132378777], +[-0.07007735599282, 0.5973026765647], +[-0.06601718147072, 0.5970061564318], +[-0.06196636986056, 0.5967241577139], +[-0.05792448533698, 0.5964571503528], +[-0.05389107242854, 0.596205591755], +[-0.04986565592432, 0.5959699244444], +[-0.04584774094688, 0.5957505736289], +[-0.04183681320726, 0.5955479447066], +[-0.03783233945581, 0.5953624207412], +[-0.03383376813996, 0.5951943599407], +[-0.02984053027589, 0.5950440931757], +[-0.02585204053741, 0.5949119215785], +[-0.02186769856003, 0.5947981142649], +[-0.01788689045315, 0.5947029062209], +[-0.01390899050765, 0.5946264963978], +[-0.009933363080403, 0.5945690460533], +[-0.005959364632381, 0.5945306773776], +[-0.001986345891592, 0.5945114724329], +[0.001986345891593, 0.594511472433], +[0.005959364632382, 0.5945306773776], +[0.009933363080403, 0.5945690460533], +[0.01390899050765, 0.5946264963978], +[0.01788689045316, 0.5947029062209], +[0.02186769856003, 0.5947981142649], +[0.02585204053741, 0.5949119215785], +[0.02984053027589, 0.5950440931757], +[0.03383376813996, 0.5951943599407], +[0.03783233945581, 0.5953624207412], +[0.04183681320726, 0.5955479447066], +[0.04584774094688, 0.5957505736289], +[0.04986565592431, 0.5959699244444], +[0.05389107242853, 0.596205591755], +[0.05792448533698, 0.5964571503528], +[0.06196636986056, 0.5967241577139], +[0.06601718147072, 0.5970061564318], +[0.0700773559928, 0.5973026765647], +[0.07414730984841, 0.5976132378777], +[0.0782275063755, 0.5979366259838], +[-0.0758339361914, 0.6020826596905], +[-0.07177512450236, 0.6017550165546], +[-0.06772677274912, 0.6014408889444], +[-0.0636882908214, 0.6011414600606], +[-0.05965924711186, 0.6008572308349], +[-0.05563918901944, 0.6005886910088], +[-0.05162764270003, 0.6003363166539], +[-0.04762411298829, 0.6001005675719], +[-0.04362808351074, 0.5998818846033], +[-0.03963901700817, 0.5996806868716], +[-0.0356563558828, 0.5994973689993], +[-0.0316795229822, 0.5993322983362], +[-0.02770792262733, 0.5991858122427], +[-0.02374094188672, 0.5990582154774], +[-0.01977795209324, 0.5989497777369], +[-0.01581831059284, 0.5988607313974], +[-0.0118613627085, 0.5987912695073], +[-0.007906443895697, 0.598741544075], +[-0.003952882059809, 0.5987116646915], +[5.095470592217e-16, 0.5987016975223], +[0.003952882059809, 0.5987116646915], +[0.007906443895697, 0.598741544075], +[0.0118613627085, 0.5987912695073], +[0.01581831059284, 0.5988607313974], +[0.01977795209324, 0.5989497777369], +[0.02374094188672, 0.5990582154774], +[0.02770792262733, 0.5991858122427], +[0.0316795229822, 0.5993322983362], +[0.03565635588279, 0.5994973689993], +[0.03963901700817, 0.5996806868716], +[0.04362808351074, 0.5998818846033], +[0.04762411298829, 0.6001005675719], +[0.05162764270003, 0.6003363166539], +[0.05563918901945, 0.6005886910089], +[0.05965924711186, 0.6008572308349], +[0.0636882908214, 0.6011414600607], +[0.06772677274913, 0.6014408889444], +[0.07177512450237, 0.6017550165546], +[0.07583393617975, 0.6020826596763], +[-0.07345221318924, 0.6062080264922], +[-0.06941530038772, 0.6058763069405], +[-0.06538900988393, 0.6055587810776], +[-0.06137268607185, 0.6052566414061], +[-0.05736588087399, 0.6049704110445], +[-0.05336812345846, 0.6047006009148], +[-0.04937891998411, 0.6044477069889], +[-0.04539775354319, 0.6042122074038], +[-0.0414240843249, 0.6039945594755], +[-0.03745735002012, 0.6037951966468], +[-0.03349696648501, 0.6036145254107], +[-0.02954232867635, 0.6034529222581], +[-0.02559281186573, 0.6033107307012], +[-0.02164777313367, 0.6031882584291], +[-0.01770655313666, 0.6030857746542], +[-0.01376847813291, 0.6030035077041], +[-0.009832862244357, 0.6029416429184], +[-0.005899009924456, 0.6029003208963], +[-0.001966218594571, 0.6028796361421], +[0.001966218594571, 0.6028796361421], +[0.005899009924457, 0.6029003208963], +[0.009832862244357, 0.6029416429184], +[0.01376847813291, 0.6030035077041], +[0.01770655313665, 0.6030857746541], +[0.02164777313367, 0.6031882584291], +[0.02559281186573, 0.6033107307012], +[0.02954232867635, 0.6034529222582], +[0.03349696648502, 0.6036145254108], +[0.03745735002013, 0.6037951966468], +[0.0414240843249, 0.6039945594755], +[0.04539775354319, 0.6042122074038], +[0.04937891998412, 0.604447706989], +[0.05336812345849, 0.6047006009149], +[0.05736588087399, 0.6049704110445], +[0.06137268607184, 0.605256641406], +[0.06538900988394, 0.6055587810777], +[0.06941530038777, 0.6058763069406], +[0.07345221317361, 0.6062080264729], +[-0.07108208864354, 0.6103123067532], +[-0.06706816111711, 0.6099765917721], +[-0.06306441342956, 0.609655843346], +[-0.05907073615756, 0.6093512008204], +[-0.05508666331437, 0.6090632111432], +[-0.05111170420413, 0.6087924079302], +[-0.04714534316357, 0.6085393083993], +[-0.04318703953318, 0.6083044101602], +[-0.03923622788361, 0.6080881878925], +[-0.03529231852143, 0.6078910899564], +[-0.03135469829389, 0.6077135349851], +[-0.02742273170628, 0.6075559085186], +[-0.02349576235898, 0.6074185597384], +[-0.01957311470258, 0.6073017983719], +[-0.01565409610056, 0.607205891832], +[-0.01173799917995, 0.6071310626608], +[-0.007824104439968, 0.6070774863381], +[-0.003911683079981, 0.6070452895137], +[0, 0.607034548707], +[0.003911683079981, 0.6070452895137], +[0.007824104439968, 0.6070774863382], +[0.01173799917995, 0.6071310626608], +[0.01565409610056, 0.6072058918321], +[0.01957311470258, 0.6073017983719], +[0.02349576235899, 0.6074185597384], +[0.02742273170627, 0.6075559085186], +[0.0313546982939, 0.6077135349852], +[0.03529231852148, 0.6078910899565], +[0.03923622788361, 0.6080881878926], +[0.04318703953317, 0.6083044101602], +[0.04714534316357, 0.6085393083993], +[0.05111170420418, 0.6087924079303], +[0.05508666331437, 0.6090632111432], +[0.05907073615751, 0.6093512008203], +[0.06306441342954, 0.609655843346], +[0.06706816111718, 0.6099765917722], +[0.07108208867674, 0.6103123067966], +[-0.06872515235175, 0.6143947181569], +[-0.06473404522992, 0.6140553314351], +[-0.06075334619866, 0.6137315444112], +[-0.0567828286872, 0.6134246178257], +[-0.05282200718237, 0.6131351242693], +[-0.04887036928567, 0.6128636217144], +[-0.0449273754553, 0.6126106500924], +[-0.04099245901492, 0.6123767277091], +[-0.03706502645883, 0.6121623475392], +[-0.03314445808208, 0.6119679734527], +[-0.02923010895629, 0.6117940364324], +[-0.02532131026762, 0.6116409308561], +[-0.0214173710204, 0.6115090109116], +[-0.01751758010333, 0.6113985872285], +[-0.01362120870212, 0.611309923802], +[-0.009727513031677, 0.6112432352909], +[-0.005835737348363, 0.611198684757], +[-0.001945117193147, 0.6111763819105], +[0.001945117193149, 0.6111763819106], +[0.005835737348367, 0.6111986847571], +[0.009727513031673, 0.6112432352908], +[0.01362120870211, 0.6113099238019], +[0.01751758010335, 0.6113985872286], +[0.02141737102042, 0.6115090109117], +[0.0253213102676, 0.611640930856], +[0.02923010895626, 0.6117940364323], +[0.03314445808209, 0.6119679734528], +[0.03706502645887, 0.6121623475393], +[0.04099245901488, 0.612376727709], +[0.04492737545524, 0.6126106500922], +[0.04887036928567, 0.6128636217144], +[0.05282200718254, 0.6131351242695], +[0.05678282868707, 0.6134246178254], +[0.06075334619852, 0.613731544411], +[0.0647340452299, 0.6140553314351], +[0.06872515237615, 0.6143947181892], +[-0.06638106862222, 0.6184549261189], +[-0.0624133074662, 0.6181119621444], +[-0.05845618926232, 0.6177853294739], +[-0.05450937162875, 0.6174763494888], +[-0.05057234770335, 0.617185622431], +[-0.04664458130797, 0.6169137324598], +[-0.04272550669776, 0.6166612438213], +[-0.03881452861828, 0.6164286968325], +[-0.03491102271002, 0.6162166037353], +[-0.03101433629043, 0.616025444481], +[-0.02712378954102, 0.6158556625286], +[-0.02323867711026, 0.6157076607274], +[-0.01935827013871, 0.615581797381], +[-0.01548181869699, 0.6154783825852], +[-0.01160855461305, 0.6153976749286], +[-0.007737694653586, 0.6153398786573], +[-0.00386844400603, 0.6153051413694], +[1.910801472081e-16, 0.6152935523182], +[0.003868444006043, 0.6153051413697], +[0.007737694653586, 0.6153398786573], +[0.01160855461301, 0.6153976749283], +[0.01548181869694, 0.6154783825849], +[0.01935827013879, 0.6155817973814], +[0.02323867711025, 0.6157076607274], +[0.02712378954094, 0.6158556625283], +[0.03101433629034, 0.6160254444807], +[0.03491102271006, 0.6162166037354], +[0.03881452861822, 0.6164286968324], +[0.04272550669758, 0.6166612438209], +[0.04664458130782, 0.6169137324595], +[0.05057234770305, 0.6171856224305], +[0.05450937162869, 0.6174763494887], +[0.05845618926195, 0.6177853294733], +[0.06241330746594, 0.618111962144], +[0.06638106863745, 0.6184549261393], +[-0.06405022375377, 0.6224930115517], +[-0.06010632018852, 0.6221458939196], +[-0.056173343606, 0.6218166183424], +[-0.05225079520489, 0.6215058286288], +[-0.04833814471015, 0.6212141548969], +[-0.04443482981285, 0.6209422095161], +[-0.04054025592797, 0.6206905827967], +[-0.03665379631675, 0.6204598384767], +[-0.03277479261607, 0.6202505090688], +[-0.02890255581067, 0.6200630911459], +[-0.02503636767458, 0.6198980406502], +[-0.02117548269913, 0.6197557683363], +[-0.01731913050503, 0.6196366354442], +[-0.01346651872749, 0.6195409497339], +[-0.009616836333172, 0.6194689619454], +[-0.00576925733282, 0.6194208628616], +[-0.001922944809545, 0.6193967809917], +[0.001922944809566, 0.6193967809928], +[0.005769257332842, 0.619420862862], +[0.00961683633313, 0.619468961945], +[0.01346651872736, 0.619540949733], +[0.01731913050536, 0.619636635446], +[0.02117548269899, 0.6197557683357], +[0.02503636767433, 0.6198980406493], +[0.02890255581047, 0.6200630911452], +[0.03277479261606, 0.6202505090688], +[0.03665379631709, 0.6204598384775], +[0.04054025592804, 0.6206905827969], +[0.04443482981274, 0.6209422095159], +[0.04833814471, 0.6212141548966], +[0.05225079520483, 0.6215058286287], +[0.05617334360618, 0.6218166183427], +[0.06010632018908, 0.6221458939203], +[0.06405022375377, 0.6224930115517], +[-0.06173280452057, 0.626506899407], +[-0.05781347497981, 0.6261565083363], +[-0.05390523199397, 0.6258248032889], +[-0.05000755402671, 0.6255124618269], +[-0.04611988505025, 0.6252201464259], +[-0.04224163394837, 0.6249484998988], +[-0.03837217429378, 0.6246981405318], +[-0.03451084455519, 0.6244696569946], +[-0.03065694878373, 0.6242636031015], +[-0.02680975781958, 0.6240804925169], +[-0.02296851105001, 0.6239207935202], +[-0.01913241873107, 0.6237849239475], +[-0.01530066486966, 0.6236732464425], +[-0.01147241064211, 0.6235860641533], +[-0.007646798301232, 0.6235236169921], +[-0.003822955508157, 0.6234860785943], +[-1.369407721658e-15, 0.6234735540644], +[0.003822955508121, 0.6234860785935], +[0.007646798301191, 0.6235236169916], +[0.01147241064213, 0.6235860641535], +[0.01530066486979, 0.6236732464433], +[0.01913241873113, 0.6237849239478], +[0.02296851104995, 0.6239207935199], +[0.02680975781948, 0.6240804925166], +[0.03065694878369, 0.6242636031014], +[0.03451084455532, 0.624469656995], +[0.03837217429395, 0.6246981405322], +[0.0422416339484, 0.6249484998988], +[0.04611988505021, 0.6252201464258], +[0.05000755402668, 0.6255124618268], +[0.05390523199405, 0.625824803289], +[0.05781347498006, 0.6261565083367], +[0.06173280452056, 0.626506899407], +[-0.05942931595963, 0.6304966251053], +[-0.0555351844302, 0.6301431559992], +[-0.05165230106781, 0.6298092466515], +[-0.04778012951163, 0.6294956272246], +[-0.04391808531391, 0.6292029953195], +[-0.04006554549619, 0.6289320266681], +[-0.03622184835815, 0.6286833696244], +[-0.03238629379504, 0.6284576394011], +[-0.02855814418268, 0.628255412151], +[-0.02473662587753, 0.6280772190095], +[-0.02092093136344, 0.6279235402322], +[-0.01711022205708, 0.6277947995808], +[-0.01330363176039, 0.6276913591117], +[-0.009500270722922, 0.6276135145284], +[-0.005699230250103, 0.6275614912492], +[-0.001899587767984, 0.6275354413265], +[0.00189958776798, 0.6275354413263], +[0.005699230250084, 0.6275614912489], +[0.009500270722914, 0.6276135145283], +[0.01330363176043, 0.627691359112], +[0.01711022205717, 0.6277947995813], +[0.02092093136349, 0.6279235402324], +[0.02473662587751, 0.6280772190094], +[0.02855814418265, 0.628255412151], +[0.03238629379507, 0.6284576394012], +[0.03622184835828, 0.6286833696247], +[0.04006554549625, 0.6289320266683], +[0.04391808531391, 0.6292029953195], +[0.04778012951162, 0.6294956272246], +[0.05165230106783, 0.6298092466516], +[0.05553518443028, 0.6301431559994], +[0.05942931831279, 0.6304966283509], +[-0.05714018822099, 0.6344615365995], +[-0.05327188416373, 0.6341051537215], +[-0.04941502372967, 0.6337692781607], +[-0.04556903262782, 0.6334546720696], +[-0.04173329493868, 0.6331620712735], +[-0.03790715231928, 0.6328921871728], +[-0.03408990385927, 0.632645700476], +[-0.03028080654268, 0.6324232546509], +[-0.02647907638544, 0.6322254492143], +[-0.02268389030179, 0.6320528330063], +[-0.01889438873392, 0.6319058976164], +[-0.01510967905211, 0.6317850711473], +[-0.01132883970225, 0.631690712504], +[-0.007550925046711, 0.6316231064065], +[-0.003774970808434, 0.6315824592947], +[2.547735296109e-16, 0.6315688962854], +[0.003774970808434, 0.6315824592947], +[0.007550925046707, 0.6316231064064], +[0.01132883970225, 0.631690712504], +[0.01510967905212, 0.6317850711474], +[0.01889438873399, 0.6319058976168], +[0.02268389030181, 0.6320528330064], +[0.02647907638543, 0.6322254492143], +[0.03028080654268, 0.6324232546509], +[0.03408990385929, 0.6326457004761], +[0.03790715231928, 0.6328921871728], +[0.04173329493869, 0.6331620712735], +[0.04556903262782, 0.6334546720696], +[0.04941502372967, 0.6337692781607], +[0.05327188416374, 0.6341051537215], +[0.05714018958903, 0.6344615385126], +[-0.05486551684639, 0.6384002769258], +[-0.05102403512878, 0.6380417813433], +[-0.04719390184999, 0.6377041919346], +[-0.04337480702552, 0.6373889099792], +[-0.0395660997572, 0.6370967130072], +[-0.03576708230446, 0.636828351146], +[-0.03197701000929, 0.6365845399606], +[-0.02819509194756, 0.6363659529806], +[-0.02442049238738, 0.6361732140648], +[-0.02065233311706, 0.6360068897867], +[-0.01688969667635, 0.6358674820504], +[-0.01313163049068, 0.635755421161], +[-0.009377151870106, 0.6356710595894], +[-0.005625253791121, 0.635614666653], +[-0.001874911340185, 0.6355864243218], +[0.001874911340189, 0.635586424322], +[0.005625253791123, 0.635614666653], +[0.009377151870106, 0.6356710595894], +[0.01313163049068, 0.635755421161], +[0.01688969667633, 0.6358674820503], +[0.02065233311707, 0.6360068897868], +[0.02442049238738, 0.6361732140648], +[0.02819509194756, 0.6363659529806], +[0.03197701000929, 0.6365845399606], +[0.03576708230442, 0.636828351146], +[0.03956609975718, 0.6370967130071], +[0.04337480702551, 0.6373889099792], +[0.04719390184999, 0.6377041919346], +[0.05102403512878, 0.6380417813433], +[0.05486551829716, 0.6384002793516], +[-0.05260687553872, 0.6423131949134], +[-0.04879212620515, 0.6419522781395], +[-0.04498946936172, 0.6416132430973], +[-0.04119803262512, 0.6412976178788], +[-0.03741712606943, 0.6410062256411], +[-0.03364600788986, 0.6407398586487], +[-0.02988388442717, 0.6404992700566], +[-0.02612991106622, 0.6402851653446], +[-0.02238319410649, 0.6400981935979], +[-0.01864279367322, 0.6399389388613], +[-0.01490772770197, 0.6398079118317], +[-0.01117697698412, 0.6397055421687], +[-0.007449491209629, 0.6396321717089], +[-0.003724195890871, 0.6395880488568], +[0, 0.6395733243887], +[0.003724195890872, 0.6395880488568], +[0.007449491209629, 0.6396321717089], +[0.01117697698412, 0.6397055421687], +[0.01490772770196, 0.6398079118316], +[0.01864279367317, 0.639938938861], +[0.02238319410648, 0.6400981935978], +[0.02612991106622, 0.6402851653446], +[0.02988388442717, 0.6404992700566], +[0.03364600788985, 0.6407398586487], +[0.0374171260694, 0.641006225641], +[0.04119803262512, 0.6412976178788], +[0.04498946936172, 0.6416132430973], +[0.04879212620515, 0.6419522781395], +[0.05260687702221, 0.6423131973969], +[-0.05036285351713, 0.6461990808901], +[-0.04657667718319, 0.6458358387451], +[-0.04280229581217, 0.6454956439574], +[-0.03903932974839, 0.6451800325682], +[-0.03528704533923, 0.6448898777961], +[-0.03154465128912, 0.6446260178527], +[-0.02781129882333, 0.6443892464634], +[-0.02408608291339, 0.6441803030063], +[-0.02036804467755, 0.6439998625153], +[-0.01665617503361, 0.6438485258366], +[-0.0129494196324, 0.6437268102752], +[-0.009246685037443, 0.6436351410727], +[-0.005546846053861, 0.6435738440741], +[-0.001848754038278, 0.6435431399007], +[0.001848754038274, 0.6435431399005], +[0.005546846053859, 0.6435738440741], +[0.009246685037444, 0.6436351410727], +[0.0129494196324, 0.6437268102753], +[0.01665617503364, 0.6438485258367], +[0.02036804467753, 0.6439998625152], +[0.0240860829134, 0.6441803030063], +[0.02781129882333, 0.6443892464634], +[0.03154465128913, 0.6446260178528], +[0.03528704533927, 0.6448898777962], +[0.03903932974846, 0.6451800325683], +[0.04280229581217, 0.6454956439574], +[0.04657667718318, 0.6458358387451], +[0.05036285355508, 0.6461990809448], +[-0.04813574080155, 0.6500568217673], +[-0.04437824218462, 0.6496916085147], +[-0.04063299046061, 0.6493505596738], +[-0.03689936389948, 0.6490353468581], +[-0.03317657963924, 0.648746898381], +[-0.02946379054705, 0.648486102663], +[-0.02576008558076, 0.648253797241], +[-0.02206449144482, 0.6480507573607], +[-0.01837597567761, 0.6478776844679], +[-0.01469345125407, 0.6477351949769], +[-0.01101578271839, 0.6476238097285], +[-0.007341793784652, 0.6475439445825], +[-0.003670276252192, 0.6474959025638], +[-1.910801472081e-16, 0.6474798679439], +[0.003670276252192, 0.6474959025638], +[0.007341793784655, 0.6475439445826], +[0.01101578271838, 0.6476238097284], +[0.01469345125409, 0.647735194977], +[0.01837597567776, 0.6478776844685], +[0.02206449144488, 0.6480507573609], +[0.02576008558076, 0.648253797241], +[0.02946379054703, 0.648486102663], +[0.03317657963932, 0.6487468983812], +[0.03689936389976, 0.6490353468587], +[0.04063299046066, 0.6493505596739], +[0.04437824218454, 0.6496916085146], +[0.04813574081524, 0.6500568217873], +[-0.04592526332826, 0.6538856871833], +[-0.04219741361064, 0.6535186782132], +[-0.03848220703117, 0.6531771033193], +[-0.03477885132899, 0.6528627052129], +[-0.0310865079955, 0.6525764730323], +[-0.02740426659718, 0.6523193501851], +[-0.02373114540966, 0.6520922215267], +[-0.02006609364722, 0.6518959000977], +[-0.0164079954461, 0.6517311138256], +[-0.01275567568843, 0.6515984926718], +[-0.009107907664204, 0.6514985567699], +[-0.005463422454171, 0.6514317060841], +[-0.001820919809283, 0.6513982121192], +[0.001820919809292, 0.6513982121196], +[0.0054634224542, 0.6514317060845], +[0.009107907664191, 0.6514985567698], +[0.01275567568837, 0.6515984926715], +[0.01640799544616, 0.6517311138258], +[0.02006609364749, 0.6518959000987], +[0.02373114540971, 0.6520922215268], +[0.02740426659705, 0.6523193501847], +[0.03108650799543, 0.6525764730322], +[0.03477885132931, 0.6528627052135], +[0.0384822070314, 0.6531771033196], +[0.04219741361037, 0.6535186782128], +[0.04592526332624, 0.6538856871803], +[-0.04373202147597, 0.6576846171309], +[-0.04003482672403, 0.6573160779108], +[-0.03635064925923, 0.6569743302364], +[-0.0326785655452, 0.6566611988162], +[-0.02901767382605, 0.6563777401723], +[-0.02536699153132, 0.6561249580563], +[-0.02172545629445, 0.6559037884086], +[-0.01809192894995, 0.6557150838588], +[-0.01446519868954, 0.655559598284], +[-0.01084399047681, 0.6554379721023], +[-0.007226974659335, 0.6553507189259], +[-0.003612778602053, 0.6552982142958], +[4.331150003384e-15, 0.6552806871191], +[0.003612778602145, 0.6552982142976], +[0.00722697465937, 0.6553507189262], +[0.01084399047665, 0.6554379721013], +[0.01446519868929, 0.6555595982827], +[0.01809192895006, 0.6557150838592], +[0.02172545629477, 0.6559037884096], +[0.02536699153104, 0.6561249580555], +[0.0290176738255, 0.656377740171], +[0.03267856554503, 0.6566611988159], +[0.03635064926015, 0.656974330238], +[0.04003482672346, 0.6573160779099], +[0.04373202146322, 0.657684617112], +[-0.04155664108235, 0.6614525877252], +[-0.03789116499789, 0.6610827699259], +[-0.03423907739789, 0.6607412315442], +[-0.03059934498619, 0.6604298599756], +[-0.02697099371474, 0.6601497866496], +[-0.02335295834577, 0.6599020816762], +[-0.01974408400499, 0.6596877360787], +[-0.0161431302147, 0.6595076435849], +[-0.01254877760113, 0.6593625826209], +[-0.008959637387776, 0.6592531994778], +[-0.005374263515259, 0.6591799933406], +[-0.00179116712288, 0.6591433041756], +[0.001791167123027, 0.6591433041812], +[0.005374263515458, 0.6591799933431], +[0.00895963738759, 0.6592531994765], +[0.01254877760041, 0.6593625826171], +[0.0161431302139, 0.6595076435816], +[0.01974408400609, 0.6596877360824], +[0.02335295834545, 0.6599020816753], +[0.02697099371338, 0.6601497866463], +[0.03059934498478, 0.6604298599727], +[0.03423907739517, 0.6607412315392], +[0.03789116499742, 0.6610827699251], +[0.04155664106206, 0.6614525876949], +[-0.03939960781507, 0.6651891307968], +[-0.03576716641041, 0.6648176406369], +[-0.03214831591875, 0.6644767266575], +[-0.02854210211864, 0.6641676557505], +[-0.02494746783111, 0.6638916429336], +[-0.02136325250135, 0.6636498314089], +[-0.0177881945137, 0.6634432714499], +[-0.01422093662308, 0.6632728988597], +[-0.01066003475683, 0.6631395139982], +[-0.007103970199587, 0.6630437623565], +[-0.003551164987869, 0.6629861179708], +[-2.149014722268e-13, 0.6629668706693], +[0.00355116498787, 0.6629861179708], +[0.007103970198311, 0.6630437623451], +[0.01066003475602, 0.6631395139933], +[0.01422093662388, 0.6632728988632], +[0.0177881945137, 0.6634432714499], +[0.02136325250285, 0.6636498314133], +[0.02494746783062, 0.6638916429324], +[0.02854210211702, 0.6641676557471], +[0.03214831591708, 0.6644767266544], +[0.0357671664099, 0.664817640636], +[0.03939960781507, 0.6651891307968], +[-0.03726197466034, 0.6688916200251], +[-0.0336636308705, 0.6685194908677], +[-0.0300792626715, 0.6681796545863], +[-0.02650783431354, 0.6678734806891], +[-0.02294819238525, 0.6676022778222], +[-0.01939906570885, 0.6673672698251], +[-0.01585906872728, 0.6671695704432], +[-0.0123267088601, 0.6670101577244], +[-0.00880039809746, 0.6668898493934], +[-0.005278468802096, 0.6668092806738], +[-0.001759193323816, 0.6667688860064], +[0.001759193323655, 0.666768886001], +[0.005278468801493, 0.6668092806669], +[0.008800398096809, 0.6668898493889], +[0.01232670886015, 0.6670101577246], +[0.01585906872879, 0.6671695704489], +[0.01939906571146, 0.667367269833], +[0.02294819238618, 0.6676022778246], +[0.02650783431327, 0.6678734806885], +[0.03007926267075, 0.6681796545848], +[0.03366363087012, 0.668519490867], +[0.03726197466034, 0.6688916200251], +[-0.03514435494196, 0.6725594449709], +[-0.03158142910504, 0.6721870246195], +[-0.028032899889, 0.6718487638007], +[-0.02449763694556, 0.6715461485175], +[-0.02097437465448, 0.6712805927151], +[-0.01746171252463, 0.6710534092725], +[-0.01395812010495, 0.6708657794617], +[-0.01046194701143, 0.6707187223463], +[-0.006971438325062, 0.670613065848], +[-0.003484755199678, 0.6705494214559], +[2.273853751777e-14, 0.6705281644805], +[0.003484755199586, 0.6705494214544], +[0.006971438324759, 0.6706130658455], +[0.01046194701127, 0.6707187223454], +[0.01395812010543, 0.6708657794637], +[0.017461712526, 0.6710534092769], +[0.02097437465578, 0.6712805927185], +[0.02449763694599, 0.6715461485185], +[0.02803289988888, 0.6718487638005], +[0.03158142910486, 0.6721870246192], +[0.03514435494196, 0.6725594449709], +[-0.0330475777279, 0.6761911696388], +[-0.02952151332905, 0.6758188356799], +[-0.0260103075112, 0.6754827003282], +[-0.02251271931214, 0.6751843826192], +[-0.01902735122622, 0.6749254154138], +[-0.01555265040322, 0.6747072098914], +[-0.01208691577416, 0.6745310184087], +[-0.008628311800311, 0.6743978976681], +[-0.005174889099755, 0.6743086747076], +[-0.001724611515551, 0.6742639183104], +[0.001724611515651, 0.6742639183136], +[0.005174889099749, 0.6743086747075], +[0.008628311800228, 0.6743978976676], +[0.01208691577423, 0.674531018409], +[0.01555265040357, 0.6747072098926], +[0.01902735122648, 0.6749254154146], +[0.0225127193125, 0.6751843826201], +[0.02601030751132, 0.6754827003285], +[0.02952151332903, 0.6758188356798], +[0.0330475777279, 0.6761911696388], +[-0.03097254775682, 0.6797852269761], +[-0.02748493020449, 0.6794133916273], +[-0.02401267948136, 0.6790799937035], +[-0.02055442416822, 0.678786805127], +[-0.0171086103684, 0.6785354935965], +[-0.01367350418405, 0.678327578702], +[-0.01024720204675, 0.6781643862991], +[-0.006827649761999, 0.6780470039937], +[-0.003412670379088, 0.6779762412007], +[-5.732404416244e-15, 0.677952597326], +[0.003412670379179, 0.677976241202], +[0.006827649762015, 0.6780470039939], +[0.01024720204675, 0.6781643862991], +[0.01367350418407, 0.6783275787021], +[0.01710861036813, 0.6785354935957], +[0.02055442416779, 0.678786805126], +[0.02401267948131, 0.6790799937034], +[0.02748493020449, 0.6794133916274], +[0.03097254775682, 0.6797852269761], +[-0.02892042707301, 0.6833391910113], +[-0.02547283673527, 0.6829690145536], +[-0.02204134389033, 0.6826390402759], +[-0.01862425194767, 0.6823519244294], +[-0.01521981973808, 0.6821094882313], +[-0.01182609618082, 0.6819133703957], +[-0.008440935349707, 0.6817649705754], +[-0.005062023122471, 0.6816653953208], +[-0.001686915199915, 0.6816154114139], +[0.001686915199916, 0.6816154114139], +[0.005062023122474, 0.6816653953208], +[0.008440935349708, 0.6817649705755], +[0.01182609618081, 0.6819133703957], +[0.01521981973794, 0.6821094882308], +[0.01862425194675, 0.6823519244271], +[0.02204134388997, 0.6826390402752], +[0.02547283673524, 0.6829690145536], +[0.02892042705286, 0.68333919098], +[-0.02689208664254, 0.6868526810276], +[-0.02348651998808, 0.6864838576071], +[-0.02009778817492, 0.686158083248], +[-0.0167238911461, 0.6858781209192], +[-0.01336286101798, 0.6856459672841], +[-0.01001248346297, 0.6854633910166], +[-0.006670319891184, 0.6853318620693], +[-0.003333745168574, 0.6852524858679], +[9.235540448393e-15, 0.6852259494176], +[0.003333745168464, 0.6852524858664], +[0.006670319891171, 0.6853318620692], +[0.01001248346297, 0.6854633910166], +[0.01336286101805, 0.6856459672843], +[0.01672389114628, 0.6858781209197], +[0.02009778817492, 0.686158083248], +[0.02348651998834, 0.6864838576076], +[0.02689208660613, 0.6868526809707], +[-0.02488870098299, 0.690322693066], +[-0.02152742187423, 0.6899558761548], +[-0.01818369105528, 0.6896351886406], +[-0.01485525692063, 0.6893636308704], +[-0.01153987372366, 0.6891434005848], +[-0.008235004411137, 0.6889764063969], +[-0.004937853636, 0.6888641784575], +[-0.001645421842983, 0.6888077883674], +[0.001645421842831, 0.6888077883634], +[0.00493785363609, 0.6888641784583], +[0.00823500441118, 0.6889764063971], +[0.01153987372357, 0.6891434005845], +[0.01485525692126, 0.6893636308721], +[0.01818369105764, 0.6896351886458], +[0.02152742187619, 0.6899558761584], +[0.02488870094205, 0.6903226930016], +[-0.02291170751258, 0.6937469652219], +[-0.01959717074693, 0.6933827919247], +[-0.01630096363552, 0.693068216208], +[-0.01302054080474, 0.6928065284518], +[-0.009753311246181, 0.6926001572794], +[-0.006496337276823, 0.6924511583465], +[-0.003246384410451, 0.6923611005793], +[-3.140083752454e-14, 0.6923309692673], +[0.003246384411053, 0.6923611005865], +[0.006496337277435, 0.6924511583501], +[0.009753311245559, 0.6926001572769], +[0.01302054080403, 0.6928065284497], +[0.01630096363827, 0.6930682162144], +[0.01959717074693, 0.6933827919247], +[0.0229117074674, 0.6937469651503], +[-0.02096263171367, 0.6971228749186], +[-0.01769762232945, 0.6967620478086], +[-0.01445180312891, 0.6964547839163], +[-0.01122227575254, 0.6962047063037], +[-0.008006013426135, 0.69601450846], +[-0.004799574287221, 0.6958863934943], +[-0.001599178036367, 0.6958219283197], +[0.001599178036367, 0.6958219283197], +[0.004799574289315, 0.6958863935094], +[0.008006013425593, 0.6960145084576], +[0.01122227574794, 0.6962047062893], +[0.01445180312379, 0.6964547839038], +[0.01769762232945, 0.6967620478086], +[0.02096263166559, 0.6971228748419], +[-0.01904261815676, 0.7004474003649], +[-0.01583091376608, 0.7000907501417], +[-0.0126387644902, 0.6997922244879], +[-0.009463422684554, 0.69955585581], +[-0.006301301708239, 0.6993846396542], +[-0.003148315755044, 0.6992809128959], +[-2.547735296109e-16, 0.6992461663624], +[0.003148315755043, 0.6992809128959], +[0.00630130170824, 0.6993846396542], +[0.009463422684555, 0.69955585581], +[0.0126387644902, 0.6997922244879], +[0.01583091376608, 0.7000907501417], +[0.01904261825204, 0.7004474005432], +[-0.01715494057457, 0.703717038583], +[-0.01399953650354, 0.7033655937127], +[-0.01086485801565, 0.7030775322318], +[-0.007747487829185, 0.7028574498822], +[-0.004643105356104, 0.7027086814617], +[-0.001546789393424, 0.7026336556096], +[0.001546789393423, 0.7026336556096], +[0.004643105356103, 0.7027086814617], +[0.007747487829186, 0.7028574498822], +[0.01086485801566, 0.7030775322318], +[0.01399953650354, 0.7033655937127], +[0.01715494064903, 0.703717038724], +[-0.01530122472793, 0.7069279049047], +[-0.01220643708209, 0.7065827626162], +[-0.0091336854778, 0.7063072978916], +[-0.006078685019474, 0.706106734256], +[-0.003036130604527, 0.7059847740025], +[-1.910801472081e-16, 0.7059438391265], +[0.003036130604525, 0.7059847740024], +[0.006078685019475, 0.706106734256], +[0.009133685477806, 0.7063072978916], +[0.0122064370821, 0.7065827626162], +[0.01530122477922, 0.7069279050031], +[-0.01348417195164, 0.7100752029387], +[-0.01045516068143, 0.7097377964457], +[-0.007449635737358, 0.7094776307085], +[-0.004462165133524, 0.7093007409056], +[-0.001486088481581, 0.7092111937514], +[0.001486088481579, 0.7092111937514], +[0.004462165133524, 0.7093007409056], +[0.007449635737367, 0.7094776307085], +[0.01045516068144, 0.7097377964458], +[0.01348417198416, 0.7100752030022], +[-0.01170705490348, 0.7131533709156], +[-0.008750062897309, 0.7128254055575], +[-0.005818175061802, 0.7125840693749], +[-0.002904347473578, 0.7124363528467], +[0, 0.7123865973633], +[0.002904347473583, 0.7124363528468], +[0.005818175061808, 0.7125840693749], +[0.008750062897347, 0.7128254055576], +[0.01170705491558, 0.7131533709406], +[-0.009973852849156, 0.7161554239324], +[-0.007096635880662, 0.7158392095518], +[-0.004246294870762, 0.7156214941554], +[-0.001413407446787, 0.7155104860681], +[0.001413407446826, 0.7155104860686], +[0.004246294870751, 0.7156214941554], +[0.007096635880663, 0.7158392095518], +[0.009973852841939, 0.7161554239204], +[-0.008289569299574, 0.7190727448679], +[-0.005502038084432, 0.7187713573025], +[-0.002743233167485, 0.7185840841089], +[2.420348531303e-15, 0.718520539208], +[0.002743233167643, 0.7185840841097], +[0.005502038083903, 0.7187713573011], +[0.008289569271268, 0.7190727448147], +[-0.006660687832536, 0.7218941356497], +[-0.003976015066116, 0.7216119625317], +[-0.001321693929486, 0.7214654635158], +[0.001321693931834, 0.7214654635368], +[0.003976015061832, 0.7216119625192], +[0.00666068778272, 0.7218941355537], +[-0.005096029795053, 0.7246042523881], +[-0.002532648385099, 0.7243482655417], +[2.547735296109e-16, 0.724259515524], +[0.002532648385105, 0.7243482655417], +[0.005096029717048, 0.7246042522349], +[-0.003608372490823, 0.727181000017], +[-0.001194098120486, 0.7269635223321], +[0.001194098120526, 0.7269635223324], +[0.003608372374348, 0.7271809997838], +[-0.002218253884721, 0.7295888083816], +[2.547735296109e-16, 0.7294368598531], +[0.002218253706294, 0.729588808016], +[-0.000965607490097, 0.7317585187421], +[0.000965607180279, 0.7317585180783], +[0, 0.7334312533308] diff --git a/Sledgehammer [Bungeecord]/target/classes/config.yml b/Sledgehammer [Bungeecord]/target/classes/config.yml new file mode 100644 index 00000000..23dabeed --- /dev/null +++ b/Sledgehammer [Bungeecord]/target/classes/config.yml @@ -0,0 +1,17 @@ +# Generate a new key using https://uuidgenerator.net/version4 +# All corresponding sledgehammer clients must have the same code +# Don't share this key with anyone you don't trust as it will allow anybody to run any command on connected servers. +authentication-key: '' + +# The prefix of messages broadcasted to players from the proxy +message-prefix: '&9&lBTE &8&l> ' + +# Set this to false to disable global tpll [/tpll & /cs tpll] +global-tpll: true + +# The command for network-wide warping. Leave blank to disable +# Permissions: sledgehammer.warp for teleporting, and sledgehammer.warp.admin for setting warps +warp-command: 'nwarp' + +# Do not edit this! +config-version: 0.3 diff --git a/Sledgehammer [Bungeecord]/target/classes/plugin.yml b/Sledgehammer [Bungeecord]/target/classes/plugin.yml new file mode 100644 index 00000000..aa52d8fc --- /dev/null +++ b/Sledgehammer [Bungeecord]/target/classes/plugin.yml @@ -0,0 +1,4 @@ +name: Sledgehammer +main: com.noahhusby.sledgehammer.Sledgehammer +version: 0.3.0 +author: noahhusby diff --git a/Sledgehammer [Bungeecord]/target/maven-archiver/pom.properties b/Sledgehammer [Bungeecord]/target/maven-archiver/pom.properties new file mode 100644 index 00000000..9522cd6b --- /dev/null +++ b/Sledgehammer [Bungeecord]/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Sun Sep 06 20:08:02 EDT 2020 +version=0.3.0-bungeecord +groupId=com.noahhusby +artifactId=Sledgehammer diff --git a/Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 00000000..7effb036 --- /dev/null +++ b/Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,73 @@ +com\noahhusby\sledgehammer\datasets\Point.class +com\noahhusby\sledgehammer\handlers\PlayerLocationHandler.class +com\noahhusby\sledgehammer\data\dialogs\CountyScene.class +com\noahhusby\sledgehammer\data\dialogs\CountryScene.class +com\noahhusby\sledgehammer\tasks\data\IResponse.class +com\noahhusby\sledgehammer\commands\CsTpllCommand.class +com\noahhusby\sledgehammer\commands\data\SetupAdminTracker.class +com\noahhusby\sledgehammer\Constants.class +com\noahhusby\sledgehammer\tasks\data\ITask.class +com\noahhusby\sledgehammer\util\ChatHelper.class +com\noahhusby\sledgehammer\util\ProxyUtil.class +com\noahhusby\sledgehammer\Sledgehammer.class +com\noahhusby\sledgehammer\commands\WarpCommand.class +com\noahhusby\sledgehammer\handlers\WarpHandler.class +com\noahhusby\sledgehammer\commands\fragments\admin\SetupAdminCommand$1.class +com\noahhusby\sledgehammer\data\dialogs\DialogScene.class +com\noahhusby\sledgehammer\datasets\OpenStreetMaps.class +com\noahhusby\sledgehammer\tasks\SetWarpTask.class +com\noahhusby\sledgehammer\commands\data\SetupField.class +com\noahhusby\sledgehammer\projection\ScaleProjection.class +com\noahhusby\sledgehammer\projection\ModifiedAirocean.class +com\noahhusby\sledgehammer\config\types\Server.class +com\noahhusby\sledgehammer\config\ConfigHandler$2.class +com\noahhusby\sledgehammer\data\dialogs\components\location\CountyComponent.class +com\noahhusby\sledgehammer\data\dialogs\components\location\StateComponent.class +com\noahhusby\sledgehammer\data\dialogs\components\DialogComponent.class +com\noahhusby\sledgehammer\handlers\TaskHandler.class +com\noahhusby\sledgehammer\tasks\TeleportTask.class +com\noahhusby\sledgehammer\tasks\data\TransferPacket.class +com\noahhusby\sledgehammer\projection\InvertableVectorField.class +com\noahhusby\sledgehammer\tasks\CommandTask.class +com\noahhusby\sledgehammer\datasets\OpenStreetMaps$1.class +com\noahhusby\sledgehammer\tasks\data\TaskPacket.class +com\noahhusby\sledgehammer\tasks\LocationTask.class +com\noahhusby\sledgehammer\commands\fragments\admin\SetupAdminCommand.class +com\noahhusby\sledgehammer\commands\fragments\ICommandFragment.class +com\noahhusby\sledgehammer\config\ConfigHandler$YamlConfiguration.class +com\noahhusby\sledgehammer\projection\Airocean.class +com\noahhusby\sledgehammer\projection\InvertedOrientation.class +com\noahhusby\sledgehammer\commands\SledgehammerCommand.class +com\noahhusby\sledgehammer\data\dialogs\components\location\CountryComponent.class +com\noahhusby\sledgehammer\commands\fragments\admin\PermissionListAdminCommand.class +com\noahhusby\sledgehammer\tasks\Task.class +com\noahhusby\sledgehammer\config\ConfigHandler.class +com\noahhusby\sledgehammer\util\Warp.class +com\noahhusby\sledgehammer\commands\fragments\admin\server\ServerListLocationFragment.class +com\noahhusby\sledgehammer\data\dialogs\components\location\LocationSelectionComponent.class +com\noahhusby\sledgehammer\commands\data\Command.class +com\noahhusby\sledgehammer\commands\fragments\CommandFragmentManager.class +com\noahhusby\sledgehammer\projection\ProjectionTransform.class +com\noahhusby\sledgehammer\commands\fragments\admin\server\ServerAddLocationFragment.class +com\noahhusby\sledgehammer\commands\fragments\admin\ServerAdminCommand.class +com\noahhusby\sledgehammer\data\dialogs\IDialogScene.class +com\noahhusby\sledgehammer\commands\TpllCommand.class +com\noahhusby\sledgehammer\datasets\Location.class +com\noahhusby\sledgehammer\config\ServerConfig.class +com\noahhusby\sledgehammer\handlers\DialogHandler.class +com\noahhusby\sledgehammer\projection\UprightOrientation.class +com\noahhusby\sledgehammer\commands\EventCommand.class +com\noahhusby\sledgehammer\commands\SledgehammerAdminCommand.class +com\noahhusby\sledgehammer\commands\fragments\admin\SetupAdminCommand$dialogAction.class +com\noahhusby\sledgehammer\data\dialogs\StateScene.class +com\noahhusby\sledgehammer\data\dialogs\CityScene.class +com\noahhusby\sledgehammer\commands\fragments\FragmentManager.class +com\noahhusby\sledgehammer\projection\GeographicProjection$Orientation.class +com\noahhusby\sledgehammer\data\dialogs\components\IDialogComponent.class +com\noahhusby\sledgehammer\data\dialogs\LocationSelectionScene.class +com\noahhusby\sledgehammer\data\dialogs\components\location\CityComponent.class +com\noahhusby\sledgehammer\projection\ConformalEstimate.class +com\noahhusby\sledgehammer\util\TextElement.class +com\noahhusby\sledgehammer\datasets\Location$detail.class +com\noahhusby\sledgehammer\projection\GeographicProjection.class +com\noahhusby\sledgehammer\config\ConfigHandler$1.class diff --git a/Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 00000000..dd888145 --- /dev/null +++ b/Sledgehammer [Bungeecord]/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,65 @@ +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\handlers\PlayerLocationHandler.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\handlers\WarpHandler.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\components\location\CountyComponent.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\admin\ServerAdminCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\CountyScene.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\InvertableVectorField.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\admin\SetupAdminCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\datasets\OpenStreetMaps.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\Airocean.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\components\location\CityComponent.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\DialogScene.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\SledgehammerAdminCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\ConformalEstimate.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\util\ChatHelper.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\data\SetupAdminTracker.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\EventCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\CityScene.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\GeographicProjection.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\Sledgehammer.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\ICommandFragment.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\CommandFragmentManager.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\LocationSelectionScene.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\TeleportTask.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\Task.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\admin\PermissionListAdminCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\handlers\TaskHandler.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\SledgehammerCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\config\ConfigHandler.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\InvertedOrientation.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\datasets\Location.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\WarpCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\util\Warp.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\data\Command.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\Constants.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\ScaleProjection.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\config\ServerConfig.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\IDialogScene.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\SetWarpTask.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\data\SetupField.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\CommandTask.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\data\TaskPacket.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\ModifiedAirocean.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\LocationTask.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\components\location\StateComponent.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\FragmentManager.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\components\DialogComponent.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\data\IResponse.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\util\ProxyUtil.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\data\TransferPacket.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\CsTpllCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\components\IDialogComponent.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\admin\server\ServerListLocationFragment.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\config\types\Server.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\tasks\data\ITask.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\fragments\admin\server\ServerAddLocationFragment.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\datasets\Point.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\CountryScene.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\commands\TpllCommand.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\components\location\CountryComponent.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\handlers\DialogHandler.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\UprightOrientation.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\projection\ProjectionTransform.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\StateScene.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\util\TextElement.java +C:\Projects\sledgehammer\Sledgehammer [Bungeecord]\src\main\java\com\noahhusby\sledgehammer\data\dialogs\components\location\LocationSelectionComponent.java diff --git a/Sledgehammer [Forge]/.gradle/4.10/fileChanges/last-build.bin b/Sledgehammer [Forge]/.gradle/4.10/fileChanges/last-build.bin new file mode 100644 index 0000000000000000000000000000000000000000..f76dd238ade08917e6712764a16a22005a50573d GIT binary patch literal 1 IcmZPo000310RR91 literal 0 HcmV?d00001 diff --git a/Sledgehammer [Forge]/.gradle/4.10/fileHashes/fileHashes.bin b/Sledgehammer [Forge]/.gradle/4.10/fileHashes/fileHashes.bin new file mode 100644 index 0000000000000000000000000000000000000000..de402102d61c0448fe418b5599a9022b2547d2de GIT binary patch literal 18647 zcmeI%u}gwM7{~ETAw(lz1K|Z7a!`;WgttLAg$5lG8yX66YKym_gb2iHYI18X8pOpV z(80kuP;hDx$)TZtAkd-)ySIB^B$`{|dvJFT&+&U-?z7&O5V|(AhnSDxyre<^0R#|0 z009ILKmY**5I_I{1Q0*~0R#|00D=D^uq!X(RhQA%T~^^g6(X@D3wLwSOPamVL>*@{ z&ildpW_J``dHb~cb*Gpt}%Nenz*4V#z z*ojs8+4St{(R_UoVxfEx&gayhT~WDj{7kH!*RF3r?%LIx>6!7IYS{@>CA6d8i9kf_ Z-miAHp9+h{a&cV#P6PuUmGG6U#255!S>XTx literal 0 HcmV?d00001 diff --git a/Sledgehammer [Forge]/.gradle/4.10/fileHashes/fileHashes.lock b/Sledgehammer [Forge]/.gradle/4.10/fileHashes/fileHashes.lock new file mode 100644 index 0000000000000000000000000000000000000000..18ac8292dca23b7382d897a63c0e88c24a62ff35 GIT binary patch literal 17 UcmZSn%I_Fdc + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/discord.xml b/Sledgehammer [Forge]/.idea/discord.xml new file mode 100644 index 00000000..cd711a0e --- /dev/null +++ b/Sledgehammer [Forge]/.idea/discord.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/gradle.xml b/Sledgehammer [Forge]/.idea/gradle.xml new file mode 100644 index 00000000..ba1ec5c7 --- /dev/null +++ b/Sledgehammer [Forge]/.idea/gradle.xml @@ -0,0 +1,16 @@ + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/jarRepositories.xml b/Sledgehammer [Forge]/.idea/jarRepositories.xml new file mode 100644 index 00000000..fea9d666 --- /dev/null +++ b/Sledgehammer [Forge]/.idea/jarRepositories.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/misc.xml b/Sledgehammer [Forge]/.idea/misc.xml new file mode 100644 index 00000000..36270c4c --- /dev/null +++ b/Sledgehammer [Forge]/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].api.iml b/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].api.iml new file mode 100644 index 00000000..05e0a7ef --- /dev/null +++ b/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].api.iml @@ -0,0 +1,16 @@ + + + + + + + FORGE + MCP + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].main.iml b/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].main.iml new file mode 100644 index 00000000..05e0a7ef --- /dev/null +++ b/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].main.iml @@ -0,0 +1,16 @@ + + + + + + + FORGE + MCP + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].test.iml b/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].test.iml new file mode 100644 index 00000000..05e0a7ef --- /dev/null +++ b/Sledgehammer [Forge]/.idea/modules/Sledgehammer_[Forge].test.iml @@ -0,0 +1,16 @@ + + + + + + + FORGE + MCP + + + + + + + \ No newline at end of file diff --git a/Sledgehammer [Forge]/.idea/vcs.xml b/Sledgehammer [Forge]/.idea/vcs.xml new file mode 100644 index 00000000..6c0b8635 --- /dev/null +++ b/Sledgehammer [Forge]/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file